AsyncAction Delegate

Represents a method that is used to run an asynchronous task.

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

Usage

Syntax

'Declaration
Public Delegate Function AsyncAction ( _
    initializationObj As Object _
) As Object
public delegate Object AsyncAction (
    Object initializationObj
)
public delegate Object^ AsyncAction (
    Object^ initializationObj
)
/** @delegate */
public delegate Object AsyncAction (
    Object initializationObj
)

Parameters

  • initializationObj
    An implementation-defined object that is returned from an Initializer delegate method.

Return Value

An implementation-defined object.

Remarks

The object that is returned from this method is associated with the return value of a TaskCompletedEventArgs object.

An asynchronous task is created by initializing an AsyncUiTask object.

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