AsyncUiTask.Initialization Property
Gets or sets an Initializer delegate method that is used to perform any type of lengthy initialization.
Namespace: Microsoft.WindowsServerSolutions.Administration.ObjectModel
Assembly: Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)
Syntax
public Initializer Initialization { get; set; }
public:
property Initializer^ Initialization {
Initializer^ get();
void set(Initializer^ value);
}
Public Property Initialization As Initializer
Property Value
Type: Microsoft.WindowsServerSolutions.Administration.ObjectModel.Initializer
An instance of Initializer that defines the method used to initialize the asynchronous task.
Remarks
The Initializer delegate is useful if the task needs to perform a lengthy initialization process prior to displaying its own user interface. The Dashboard will display “Starting” as long as the Initializer delegate is running.
See Also
AsyncUiTask Class
Microsoft.WindowsServerSolutions.Administration.ObjectModel Namespace
Return to top