QueueClient.OnBeginAcceptMessageSession Method

Executes upon calling the BeginAcceptMessageSession operation.

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

Syntax

'Declaration
Protected MustOverride Function OnBeginAcceptMessageSession ( _
    sessionId As String, _
    receiveMode As ReceiveMode, _
    timeout As TimeSpan, _
    callback As AsyncCallback, _
    state As Object _
) As IAsyncResult
'Usage
Dim sessionId As String
Dim receiveMode As ReceiveMode
Dim timeout As TimeSpan
Dim callback As AsyncCallback
Dim state As Object
Dim returnValue As IAsyncResult

returnValue = Me.OnBeginAcceptMessageSession(sessionId, _
    receiveMode, timeout, callback, state)
protected abstract IAsyncResult OnBeginAcceptMessageSession(
    string sessionId,
    ReceiveMode receiveMode,
    TimeSpan timeout,
    AsyncCallback callback,
    Object state
)
protected:
virtual IAsyncResult^ OnBeginAcceptMessageSession(
    String^ sessionId, 
    ReceiveMode receiveMode, 
    TimeSpan timeout, 
    AsyncCallback^ callback, 
    Object^ state
) abstract
abstract OnBeginAcceptMessageSession : 
        sessionId:string * 
        receiveMode:ReceiveMode * 
        timeout:TimeSpan * 
        callback:AsyncCallback * 
        state:Object -> IAsyncResult 
protected abstract function OnBeginAcceptMessageSession(
    sessionId : String, 
    receiveMode : ReceiveMode, 
    timeout : TimeSpan, 
    callback : AsyncCallback, 
    state : Object
) : IAsyncResult

Parameters

  • sessionId
    Type: System.String
    The session identifier of the message session.
  • timeout
    Type: System.TimeSpan
    The time span the server waits for processing messages before it times out.
  • state
    Type: System.Object
    A user-defined object that contains state information about the asynchronous operation.

Return Value

Type: System.IAsyncResult
An IAsyncResult that references the asynchronous operation to accept a message session.

Remarks

This is a protected member of the abstract QueueClient class. Abstract classes are not meant to be inherited, so protected members should be ignored.

See Also

Reference

QueueClient Class

Microsoft.ServiceBus.Messaging Namespace