SubscriptionClient.AcceptMessageSession Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AcceptMessageSession(String, Guid, TimeSpan) | |
AcceptMessageSession(String, TimeSpan) |
Accepts a message session that allows grouping of related messages for processing in a single transaction using the given session identifier and wait time. |
AcceptMessageSession(String, Guid) | |
AcceptMessageSession(String, Boolean) | |
AcceptMessageSession(String, Boolean, TimeSpan) | |
AcceptMessageSession(TimeSpan) |
Accepts a message session that allows grouping of related messages for processing in a single transaction using the specified server wait time. |
AcceptMessageSession(String) |
Accepts a message session that allows grouping of related messages for processing in a single transaction using the given session identifier. |
AcceptMessageSession(Boolean) | |
AcceptMessageSession() |
Accepts a message session that allows grouping of related messages for processing in a single transaction. |
AcceptMessageSession(Boolean, TimeSpan) |
AcceptMessageSession(String, Guid, TimeSpan)
public Microsoft.ServiceBus.Messaging.MessageSession AcceptMessageSession (string sessionId, Guid lockToken, TimeSpan serverWaitTime);
abstract member AcceptMessageSession : string * Guid * TimeSpan -> Microsoft.ServiceBus.Messaging.MessageSession
override this.AcceptMessageSession : string * Guid * TimeSpan -> Microsoft.ServiceBus.Messaging.MessageSession
Public Function AcceptMessageSession (sessionId As String, lockToken As Guid, serverWaitTime As TimeSpan) As MessageSession
Parameters
- sessionId
- String
- lockToken
- Guid
- serverWaitTime
- TimeSpan
Returns
Applies to
AcceptMessageSession(String, TimeSpan)
Accepts a message session that allows grouping of related messages for processing in a single transaction using the given session identifier and wait time.
public Microsoft.ServiceBus.Messaging.MessageSession AcceptMessageSession (string sessionId, TimeSpan serverWaitTime);
abstract member AcceptMessageSession : string * TimeSpan -> Microsoft.ServiceBus.Messaging.MessageSession
override this.AcceptMessageSession : string * TimeSpan -> Microsoft.ServiceBus.Messaging.MessageSession
Public Function AcceptMessageSession (sessionId As String, serverWaitTime As TimeSpan) As MessageSession
Parameters
- sessionId
- String
The session identifier of the message session.
- serverWaitTime
- TimeSpan
The time span the server waits for processing messages before it times out.
Returns
A MessageSession that allows grouping of related messages for processing in a single transaction.
Exceptions
Thrown if sessionId is null, empty, or white spaces.
Thrown if serverWaitTime is not a positive TimeSpan value.
Thrown if the operation exceeded the timeout value set by serverWaitTime
.
Thrown if the client is already closed, aborted, or disposed.
Applies to
AcceptMessageSession(String, Guid)
public Microsoft.ServiceBus.Messaging.MessageSession AcceptMessageSession (string sessionId, Guid lockToken);
abstract member AcceptMessageSession : string * Guid -> Microsoft.ServiceBus.Messaging.MessageSession
override this.AcceptMessageSession : string * Guid -> Microsoft.ServiceBus.Messaging.MessageSession
Public Function AcceptMessageSession (sessionId As String, lockToken As Guid) As MessageSession
Parameters
- sessionId
- String
- lockToken
- Guid
Returns
Applies to
AcceptMessageSession(String, Boolean)
public Microsoft.ServiceBus.Messaging.MessageSession AcceptMessageSession (string sessionId, bool isExclusiveMode);
abstract member AcceptMessageSession : string * bool -> Microsoft.ServiceBus.Messaging.MessageSession
override this.AcceptMessageSession : string * bool -> Microsoft.ServiceBus.Messaging.MessageSession
Public Function AcceptMessageSession (sessionId As String, isExclusiveMode As Boolean) As MessageSession
Parameters
- sessionId
- String
- isExclusiveMode
- Boolean
Returns
Applies to
AcceptMessageSession(String, Boolean, TimeSpan)
public Microsoft.ServiceBus.Messaging.MessageSession AcceptMessageSession (string sessionId, bool isExclusiveMode, TimeSpan serverWaitTime);
abstract member AcceptMessageSession : string * bool * TimeSpan -> Microsoft.ServiceBus.Messaging.MessageSession
override this.AcceptMessageSession : string * bool * TimeSpan -> Microsoft.ServiceBus.Messaging.MessageSession
Public Function AcceptMessageSession (sessionId As String, isExclusiveMode As Boolean, serverWaitTime As TimeSpan) As MessageSession
Parameters
- sessionId
- String
- isExclusiveMode
- Boolean
- serverWaitTime
- TimeSpan
Returns
Applies to
AcceptMessageSession(TimeSpan)
Accepts a message session that allows grouping of related messages for processing in a single transaction using the specified server wait time.
public Microsoft.ServiceBus.Messaging.MessageSession AcceptMessageSession (TimeSpan serverWaitTime);
abstract member AcceptMessageSession : TimeSpan -> Microsoft.ServiceBus.Messaging.MessageSession
override this.AcceptMessageSession : TimeSpan -> Microsoft.ServiceBus.Messaging.MessageSession
Public Function AcceptMessageSession (serverWaitTime As TimeSpan) As MessageSession
Parameters
- serverWaitTime
- TimeSpan
The time span the server waits for processing messages before it times out.
Returns
A MessageSession that allows grouping of related messages for processing in a single transaction.
Exceptions
Thrown if serverWaitTime is not a positive TimeSpan value.
Thrown if the operation exceeded the timeout value set by serverWaitTime
.
Thrown if the client is already closed, aborted, or disposed.
Applies to
AcceptMessageSession(String)
Accepts a message session that allows grouping of related messages for processing in a single transaction using the given session identifier.
public Microsoft.ServiceBus.Messaging.MessageSession AcceptMessageSession (string sessionId);
abstract member AcceptMessageSession : string -> Microsoft.ServiceBus.Messaging.MessageSession
override this.AcceptMessageSession : string -> Microsoft.ServiceBus.Messaging.MessageSession
Public Function AcceptMessageSession (sessionId As String) As MessageSession
Parameters
- sessionId
- String
The session identifier of the message session.
Returns
A MessageSession that allows grouping of related messages for processing in a single transaction.
Exceptions
Thrown if sessionId is null, empty, or white spaces.
Thrown if the operation exceeded the timeout value set by OperationTimeout.
Thrown if the client is already closed, aborted, or disposed.
Applies to
AcceptMessageSession(Boolean)
public Microsoft.ServiceBus.Messaging.MessageSession AcceptMessageSession (bool isExclusiveMode);
abstract member AcceptMessageSession : bool -> Microsoft.ServiceBus.Messaging.MessageSession
override this.AcceptMessageSession : bool -> Microsoft.ServiceBus.Messaging.MessageSession
Public Function AcceptMessageSession (isExclusiveMode As Boolean) As MessageSession
Parameters
- isExclusiveMode
- Boolean
Returns
Applies to
AcceptMessageSession()
Accepts a message session that allows grouping of related messages for processing in a single transaction.
public Microsoft.ServiceBus.Messaging.MessageSession AcceptMessageSession ();
abstract member AcceptMessageSession : unit -> Microsoft.ServiceBus.Messaging.MessageSession
override this.AcceptMessageSession : unit -> Microsoft.ServiceBus.Messaging.MessageSession
Public Function AcceptMessageSession () As MessageSession
Returns
A MessageSession that allows grouping of related messages for processing in a single transaction.
Applies to
AcceptMessageSession(Boolean, TimeSpan)
public Microsoft.ServiceBus.Messaging.MessageSession AcceptMessageSession (bool isExclusiveMode, TimeSpan serverWaitTime);
abstract member AcceptMessageSession : bool * TimeSpan -> Microsoft.ServiceBus.Messaging.MessageSession
override this.AcceptMessageSession : bool * TimeSpan -> Microsoft.ServiceBus.Messaging.MessageSession
Public Function AcceptMessageSession (isExclusiveMode As Boolean, serverWaitTime As TimeSpan) As MessageSession
Parameters
- isExclusiveMode
- Boolean
- serverWaitTime
- TimeSpan
Returns
Applies to
Azure SDK for .NET