Initializer<TBusinessObject> Delegate
Represents a method that is used to initialize an asynchronous task that is associated with a selected item in the list pane of the Dashboard.
Namespace: Microsoft.WindowsServerSolutions.Administration.ObjectModel
Assembly: Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)
Syntax
public delegate object Initializer<TBusinessObject>(
TBusinessObject businessObj
)
generic<typename TBusinessObject>
public delegate Object^ Initializer(
TBusinessObject businessObj
)
Public Delegate Function Initializer(Of TBusinessObject) (
businessObj As TBusinessObject
) As Object
Parameters
businessObj
Type: TBusinessObjectA business object that encapsulates information and methods that relate to business data or business functionality.
Return Value
Type: System.Object
An implementation-defined object that is used by an asynchronous task.
Type Parameters
- TBusinessObject
Represents a business object that encapsulates information and methods that relate to business data or business functionality. The information in the business object is exposed as properties.
Remarks
For more information about asynchronous tasks, see AsyncUiTask.
TBusinessObject represents a business object that encapsulates information and methods that relate to business data or business functionality. The information in the business object is exposed as properties.
See Also
Microsoft.WindowsServerSolutions.Administration.ObjectModel Namespace
Return to top