Begins a new async operation.

Namespace: FirstFloor.Documents.ComponentModel
Assembly: FirstFloor.Documents (in FirstFloor.Documents.dll) Version: 2.5.0.0 (2.5.1.0)

Syntax

C#
protected void BeginOperation(
	Func<AsyncCompletedEventArgs> action,
	SendOrPostCallback callback,
	Object userState
)
Visual Basic
Protected Sub BeginOperation ( _
	action As Func(Of AsyncCompletedEventArgs), _
	callback As SendOrPostCallback, _
	userState As Object _
)
Visual C++
protected:
void BeginOperation(
	Func<AsyncCompletedEventArgs^>^ action, 
	SendOrPostCallback^ callback, 
	Object^ userState
)

Parameters

action
Type: System..::..Func<(Of <(<'AsyncCompletedEventArgs>)>)>
The action.
callback
Type: System.Threading..::..SendOrPostCallback
The callback.
userState
Type: System..::..Object
A custom user state.

See Also