'DeclarationPublic Function BeginProcessRequest( _ ByVal channeId As String, _ ByVal endpointDescription As EndpointDescription, _ ByVal request As IServiceRequest, _ ByVal callback As AsyncCallback, _ ByVal callbackData As Object _ ) As IAsyncResult
'UsageDim instance As EndpointBase Dim channeId As String Dim endpointDescription As EndpointDescription Dim request As IServiceRequest Dim callback As AsyncCallback Dim callbackData As Object Dim value As IAsyncResult value = instance.BeginProcessRequest(channeId, endpointDescription, request, callback, callbackData)
public IAsyncResult BeginProcessRequest( string channeId, EndpointDescription endpointDescription, IServiceRequest request, AsyncCallback callback, object callbackData )
public: IAsyncResult^ BeginProcessRequest( String^ channeId, EndpointDescription^ endpointDescription, IServiceRequest^ request, AsyncCallback^ callback, Object^ callbackData )
Parameters
- channeId
- A unique identifier for the secure channel which is the source of the request.
- endpointDescription
- The description of the endpoint which the secure channel is using.
- request
- The incoming request.
- callback
- The callback.
- callbackData
- The callback data.
Return Value
The result which must be passed to the EndProcessRequest method.