BeginInitialize Method
The method to be called when the asynchronous initialization is completed.
A user-provided object that distinguishes this particular asynchronous request from other requests.
Begins an asynchronous ClarifyApplication initialization.
Syntax
'Declaration
Public Shared Function BeginInitialize( _
ByVal _callback_ As AsyncCallback, _
ByVal _state_ As Object _
) As IAsyncResult
public static IAsyncResult BeginInitialize(
AsyncCallback _callback_,
object _state_
)
Parameters
callback
The method to be called when the asynchronous initialization is completed.
state
A user-provided object that distinguishes this particular asynchronous request from other requests.
Return Value
An IAsyncResult that references the asynchronous initialization.
Remarks
The BeginInitialize method starts an asynchronous initialization of the ClarifyApplication.
Your callback method should call EndInitialize to complete the operation. Please see the Asynchronous Design Pattern Overview for more details on using asynchronous methods.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server family
Reference
ClarifyApplication Class
ClarifyApplication Members
Asynchronous Design Pattern Overview