MessageReceiver.BeginDeadLetter Method (BrokeredMessage, AsyncCallback, Object)

Asynchronous version of the DeadLetter(BrokeredMessage) method. Begins a dead letter operation.

Namespace:  Microsoft.ServiceBus.Messaging
Assembly:  Microsoft.ServiceBus.Messaging (in Microsoft.ServiceBus.Messaging.dll)

Syntax

'Declaration
Public Function BeginDeadLetter ( _
    message As BrokeredMessage, _
    callback As AsyncCallback, _
    state As Object _
) As IAsyncResult
'Usage
Dim instance As MessageReceiver
Dim message As BrokeredMessage
Dim callback As AsyncCallback
Dim state As Object
Dim returnValue As IAsyncResult

returnValue = instance.BeginDeadLetter(message, _
    callback, state)
public IAsyncResult BeginDeadLetter(
    BrokeredMessage message,
    AsyncCallback callback,
    Object state
)
public:
IAsyncResult^ BeginDeadLetter(
    BrokeredMessage^ message, 
    AsyncCallback^ callback, 
    Object^ state
)
member BeginDeadLetter : 
        message:BrokeredMessage * 
        callback:AsyncCallback * 
        state:Object -> IAsyncResult 
public function BeginDeadLetter(
    message : BrokeredMessage, 
    callback : AsyncCallback, 
    state : Object
) : IAsyncResult

Parameters

  • state
    Type: System.Object
    A user-defined object that contains information about the receive operation. This object is passed to the EndDeadLetter(IAsyncResult) delegate when the operation is complete.

Return Value

Type: System.IAsyncResult
An IAsyncResult object that references the asynchronously completed operation.

See Also

Reference

MessageReceiver Class

BeginDeadLetter Overload

Microsoft.ServiceBus.Messaging Namespace