ClientBase<TChannel>.BeginOperationDelegate Delegate

Definition

protected:  where TChannel : classdelegate IAsyncResult ^ ClientBase<TChannel>::BeginOperationDelegate(cli::array <System::Object ^> ^ inValues, AsyncCallback ^ asyncCallback, System::Object ^ state);
protected delegate IAsyncResult ClientBase<TChannel>.BeginOperationDelegate(object[] inValues, AsyncCallback asyncCallback, object state) where TChannel : class;
Protected Delegate Function ClientBase(Of TChannel).BeginOperationDelegate(inValues As Object(), asyncCallback As AsyncCallback, state As Object) As IAsyncResult 

Parameters

inValues
Object[]

The input values to the asynchronous call.

asyncCallback
AsyncCallback

Reference to the method to be called when the corresponding asynchronous operation completes.

state
Object

An Object that lets the client distinguish between different asynchronous calls. It is made available to the client in the arguments parameter of the event completion callback.

Return Value

The result of the asynchronous call.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to