SubscriptionClient.GetMessageSessions 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
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 |
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
Azure SDK for .NET