[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]Transforms a schedule XML string into a schedule object. Namespace: Microsoft.EnterpriseManagement.Common
Assembly: Microsoft.EnterpriseManagement.Core (in microsoft.enterprisemanagement.core.dll)

Usage

Visual Basic
Dim scheduleXml As String
Dim returnValue As Schedule

returnValue = Schedule.GetSchedule(scheduleXml)

Syntax

Visual Basic
Public Shared Function GetSchedule ( _
		scheduleXml As String _
) As Schedule
C#
public static Schedule GetSchedule (
		string scheduleXml
)
C++
public:
static Schedule^ GetSchedule (
		String^ scheduleXml
)
J#
public static Schedule GetSchedule (
		String scheduleXml
)
JScript
public static function GetSchedule (
		scheduleXml : String
) : Schedule

Parameters

scheduleXml

The schedule XML string.

Return Value

The schedule object.

Exceptions

Exception type Condition
ArgumentOutOfRangeException

The scheduleXml parameter does not contain any valid schedule data.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP

Target Platforms

Windows Server 2008,Windows Server 2003

See Also