SoapMessageQueue.BeginDequeue Method

Starts an asynchronous operation to remove the SOAP message from the queue.

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

Usage

'Usage
Dim callback As AsyncCallback
Dim state As Object
Dim returnValue As IAsyncResult
Dim soapMessageQueue1 As SoapMessageQueue
returnValue = soapMessageQueue1.BeginDequeue(callback, state)

Syntax

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

Parameters

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

Return Value

The 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 2000, Windows 2000 Server, Windows 2000 Advanced Server

Target Platforms

See Also

Reference

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