ClientBase<TChannel>.EndOperationDelegate Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a delegate that is invoked by InvokeAsync(ClientBase<TChannel>.BeginOperationDelegate, Object[], ClientBase<TChannel>.EndOperationDelegate, SendOrPostCallback, Object) on successful completion of the call made by InvokeAsync(ClientBase<TChannel>.BeginOperationDelegate, Object[], ClientBase<TChannel>.EndOperationDelegate, SendOrPostCallback, Object) to ClientBase<TChannel>.BeginOperationDelegate.
protected: where TChannel : classdelegate cli::array <System::Object ^> ^ ClientBase<TChannel>::EndOperationDelegate(IAsyncResult ^ result);
protected delegate object[] ClientBase<TChannel>.EndOperationDelegate(IAsyncResult result) where TChannel : class;
Protected Delegate Function ClientBase(Of TChannel).EndOperationDelegate(result As IAsyncResult) As Object()
Parameters
- result
- IAsyncResult
The result returned by the call made by InvokeAsync(ClientBase<TChannel>.BeginOperationDelegate, Object[], ClientBase<TChannel>.EndOperationDelegate, SendOrPostCallback, Object)
Return Value
An array of Object that contains the results of the call to the asynchronous method. The operation may have multiple return values, which are all returned in this object array.
Extension Methods
GetMethodInfo(Delegate) |
Gets an object that represents the method represented by the specified delegate. |