Share via


AsyncUiTask<TBusinessObject>.Initialization Property

 

Gets or sets an Initializer<TBusinessObject> 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<TBusinessObject> Initialization { get; set; }
public:
property Initializer<TBusinessObject>^ Initialization {
    Initializer<TBusinessObject>^ get();
    void set(Initializer<TBusinessObject>^ value);
}
Public Property Initialization As Initializer(Of TBusinessObject)

Property Value

Type: Microsoft.WindowsServerSolutions.Administration.ObjectModel.Initializer<TBusinessObject>

An instance of Initializer<TBusinessObject> that defines the method that is used to initialize the asynchronous task.

Remarks

The Initializer<TBusinessObject> delegate is useful if the task needs to perform a lengthy initialization process prior to displaying its own user interface. The Dashboard will display the busy indicator as long as the Initializer<TBusinessObject> delegate is running.

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

AsyncUiTask<TBusinessObject> Class
Microsoft.WindowsServerSolutions.Administration.ObjectModel Namespace

Return to top