SubscriptionClient.GetMessageSessions Method

Definition

Overloads

GetMessageSessions()

Gets a message session that allows grouping of related messages for processing in a single transaction.

GetMessageSessions(DateTime)

Retrieves all message sessions whose session state was updated since lastUpdatedTime.

GetMessageSessions()

Gets a message session that allows grouping of related messages for processing in a single transaction.

public System.Collections.Generic.IEnumerable<Microsoft.ServiceBus.Messaging.MessageSession> GetMessageSessions ();
abstract member GetMessageSessions : unit -> seq<Microsoft.ServiceBus.Messaging.MessageSession>
override this.GetMessageSessions : unit -> seq<Microsoft.ServiceBus.Messaging.MessageSession>
Public Function GetMessageSessions () As IEnumerable(Of MessageSession)

Returns

A message session that allows grouping of related messages for processing in a single transaction.

Applies to

GetMessageSessions(DateTime)

Retrieves all message sessions whose session state was updated since lastUpdatedTime.

public System.Collections.Generic.IEnumerable<Microsoft.ServiceBus.Messaging.MessageSession> GetMessageSessions (DateTime lastUpdatedTime);
abstract member GetMessageSessions : DateTime -> seq<Microsoft.ServiceBus.Messaging.MessageSession>
override this.GetMessageSessions : DateTime -> seq<Microsoft.ServiceBus.Messaging.MessageSession>
Public Function GetMessageSessions (lastUpdatedTime As DateTime) As IEnumerable(Of MessageSession)

Parameters

lastUpdatedTime
DateTime

The time the session was last updated.

Returns

A message session that allows grouping of related messages for processing in a single transaction.

Applies to