SoapAspNetRequestChannel.BeginSend Method

Starts an asynchronous send operation. The default implementation always throws an exception.

Namespace: Microsoft.Web.Services3.Messaging
Assembly: Microsoft.Web.Services3 (in microsoft.web.services3.dll)

Usage

'Usage
Dim message As SoapEnvelope
Dim callback As AsyncCallback
Dim state As Object
Dim returnValue As IAsyncResult
Dim soapAspNetRequestChannel1 As SoapAspNetRequestChannel
returnValue = soapAspNetRequestChannel1.BeginSend(message, callback, state)

Syntax

'Declaration
Public Function BeginSend( _
    ByVal message As SoapEnvelope, _
    ByVal callback As AsyncCallback, _
    ByVal state As Object _
) As IAsyncResult
public IAsyncResult BeginSend(
    SoapEnvelope message, 
    AsyncCallback callback, 
    object state
);
public:
virtual IAsyncResult^ arbitrary-name(
    SoapEnvelope^ message,
    AsyncCallback^ callback,
    Object^ state
);
public IAsyncResult BeginSend(
    SoapEnvelope message, 
    AsyncCallback callback, 
    System.Object state
);
public final function BeginSend(
     message : SoapEnvelope, 
     callback : AsyncCallback, 
     state : Object
) : IAsyncResult;

Parameters

  • message
    A Microsoft.Web.Services3.SoapEnvelope that represents the SOAP message.
  • callback
    A System.AsyncCallback that represents the callback method.
  • state
    An object that can be used to access state information for the asynchronous operation.

Return Value

The System.IAsyncResult that identifies the asynchronous request.

Exceptions

Exception type Condition
NotSupportedException

Always.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows 2000, Windows 2000 Server, Windows 2000 Advanced Server

Target Platforms

See Also

Reference

SoapAspNetRequestChannel Class
SoapAspNetRequestChannel Members
Microsoft.Web.Services3.Messaging Namespace