Share via


Initializer Generic 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 Administration Console.

Namespace: Microsoft.EssentialBusinessServer.Console.ObjectModel
Assembly: Microsoft.EssentialBusinessServer.Console.ObjectModel (in microsoft.essentialbusinessserver.console.objectmodel.dll)

Usage

Syntax

'Declaration
Public Delegate Function Initializer(Of TBusinessObject) ( _
    businessObj As TBusinessObject _
) As Object
public delegate Object Initializer<TBusinessObject> (
    TBusinessObject businessObj
)
generic<typename TBusinessObject>
public delegate Object^ Initializer (
    TBusinessObject businessObj
)

Parameters

  • businessObj
    A business object that encapsulates information and methods that relate to business data or business functionality.

Return Value

An implementation-defined object that is used by an asynchronous task.

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.

Platforms

Development Platforms

Windows Server 2008 64-bit Edition, Windows Vista 64-bit Edition, Windows Essential Business Server 2008 Standard, Windows Essential Business Server 2008 Premium

Target Platforms

Windows Essential Business Server 2008 Standard, Windows Essential Business Server 2008 Premium

See Also

Reference

Microsoft.EssentialBusinessServer.Console.ObjectModel Namespace