ISoapOutputChannel.BeginSend Method

Starts an asynchronous send operation.

Namespace: Microsoft.Web.Services2.Messaging
Assembly: Microsoft.Web.Services2 (in microsoft.web.services2.dll)

Usage

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

Syntax

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

Parameters

  • callback
    An System.AsyncCallback that represents the callback method.
  • state
    An object that can be used to access state information of the asynchronous operation.

Return Value

The System.IAsyncResult that identifies the asynchronous request.

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 Longhorn, and Windows 2000

Target Platforms

Windows 2000, Windows 2000 Server, Windows 2000 Advanced Server, Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows Longhorn, Pocket PC, Windows CE, Smart Phone

See Also

Reference

ISoapOutputChannel Interface
Microsoft.Web.Services2.Messaging Namespace

Other Resources

ISoapOutputChannel Members