QueueClient.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 the message sessions, enabling you to browse sessions on queues. Only sessions with active messages in the queue are returned. The sessions on the deadletter queue or sessions having a SessionState as 'active' and no messages are not returned with this call. |
GetMessageSessions(DateTime) |
Retrieves all message sessions whose session state was updated since |
GetMessageSessions()
Gets the message sessions, enabling you to browse sessions on queues. Only sessions with active messages in the queue are returned. The sessions on the deadletter queue or sessions having a SessionState as 'active' and no messages are not returned with this call.
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
The message session.
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
The message sessions.