Class AsyncOperationStarting
Delegate describing the function signature required for a method that is called
whenever a new asynchronous operation is starting.
The thread is running, but the callers'
Namespace: SuperOffice.Threading
Assembly: SoCore.dll
Syntax
public sealed class AsyncOperationStarting : MulticastDelegate
Constructors
AsyncOperationStarting(Object, IntPtr)
Delegate describing the function signature required for a method that is called
whenever a new asynchronous operation is starting.
The thread is running, but the callers'
Declaration
public AsyncOperationStarting(object object, IntPtr method)
Parameters
Type | Name | Description |
---|---|---|
Object | object | |
IntPtr | method |
Methods
BeginInvoke(AsyncContext, AsyncCallback, Object)
Delegate describing the function signature required for a method that is called
whenever a new asynchronous operation is starting.
The thread is running, but the callers'
Declaration
public virtual IAsyncResult BeginInvoke(AsyncContext context, AsyncCallback callback, object object)
Parameters
Type | Name | Description |
---|---|---|
AsyncContext | context | |
AsyncCallback | callback | |
Object | object |
Returns
Type | Description |
---|---|
IAsyncResult |
EndInvoke(IAsyncResult)
Delegate describing the function signature required for a method that is called
whenever a new asynchronous operation is starting.
The thread is running, but the callers'
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
Type | Name | Description |
---|---|---|
IAsyncResult | result |
Invoke(AsyncContext)
Delegate describing the function signature required for a method that is called
whenever a new asynchronous operation is starting.
The thread is running, but the callers'
Declaration
public virtual void Invoke(AsyncContext context)
Parameters
Type | Name | Description |
---|---|---|
AsyncContext | context |