MessageReceiver.BeginTryReceive Method (AsyncCallback, Object)
Asynchronous version of the TryReceive() method. Begins a try receive operation.
Namespace: Microsoft.ServiceBus.Messaging
Assembly: Microsoft.ServiceBus.Messaging (in Microsoft.ServiceBus.Messaging.dll)
Syntax
'Declaration
Public Function BeginTryReceive ( _
callback As AsyncCallback, _
state As Object _
) As IAsyncResult
'Usage
Dim instance As MessageReceiver
Dim callback As AsyncCallback
Dim state As Object
Dim returnValue As IAsyncResult
returnValue = instance.BeginTryReceive(callback, _
state)
public IAsyncResult BeginTryReceive(
AsyncCallback callback,
Object state
)
public:
IAsyncResult^ BeginTryReceive(
AsyncCallback^ callback,
Object^ state
)
member BeginTryReceive :
callback:AsyncCallback *
state:Object -> IAsyncResult
public function BeginTryReceive(
callback : AsyncCallback,
state : Object
) : IAsyncResult
Parameters
- callback
Type: System.AsyncCallback
An AsyncCallback delegate that references the method to invoke when the operation is complete.
- state
Type: System.Object
A user-defined object that contains information about the receive operation. This object is passed to the EndTryReceive(IAsyncResult, BrokeredMessage) delegate when the operation is complete.
Return Value
Type: System.IAsyncResult
An IAsyncResult object that references the asynchronously completed operation.