Schedules a read from string operation. Namespace: Microsoft.ConfigurationManagement.AdminConsole
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim connectionManager As ConnectionManagerBase
Dim schedule As String
Dim returnValue As List(Of IResultObject)

returnValue = ResultObjectHelpers.ScheduleReadFromString(connectionManager, schedule)

Syntax

Visual Basic
Public Shared Function ScheduleReadFromString ( _
		connectionManager As ConnectionManagerBase, _
		schedule As String _
) As List(Of IResultObject)
C#
public static List<IResultObject> ScheduleReadFromString (
		ConnectionManagerBase connectionManager,
		string schedule
)
C++
public:
static List<IResultObject^>^ ScheduleReadFromString (
		ConnectionManagerBase^ connectionManager, 
		String^ schedule
)
J#
public static List<IResultObject> ScheduleReadFromString (
		ConnectionManagerBase connectionManager, 
		String schedule
)
JScript
public static function ScheduleReadFromString (
		connectionManager : ConnectionManagerBase, 
		schedule : String
) : List<IResultObject>

Parameters

connectionManager

[in] ConnectionManagerBase object.

schedule

[in] Schedule for the operation.

Return Value

System.Collections.Generic.List object that represents IResultObject interfaces for getting and setting result object properties.

Remarks

Exception type

Condition

ArgumentNullException

[in] The schedule parameter cannot be null.


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 2003, Windows Vista

Target Platforms

Windows Server 2003,Windows Vista

See Also