QueueClient.GetMessageSessionsAsync 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
GetMessageSessionsAsync() |
Asynchronously 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. |
GetMessageSessionsAsync(DateTime) |
Asynchronously retrieves all message sessions whose session state was updated since |
GetMessageSessionsAsync()
Asynchronously 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.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.ServiceBus.Messaging.MessageSession>> GetMessageSessionsAsync ();
abstract member GetMessageSessionsAsync : unit -> System.Threading.Tasks.Task<seq<Microsoft.ServiceBus.Messaging.MessageSession>>
override this.GetMessageSessionsAsync : unit -> System.Threading.Tasks.Task<seq<Microsoft.ServiceBus.Messaging.MessageSession>>
Public Function GetMessageSessionsAsync () As Task(Of IEnumerable(Of MessageSession))
Returns
The asynchronous operation.
Applies to
GetMessageSessionsAsync(DateTime)
Asynchronously retrieves all message sessions whose session state was updated since lastUpdatedTime
.
public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.ServiceBus.Messaging.MessageSession>> GetMessageSessionsAsync (DateTime lastUpdatedTime);
abstract member GetMessageSessionsAsync : DateTime -> System.Threading.Tasks.Task<seq<Microsoft.ServiceBus.Messaging.MessageSession>>
override this.GetMessageSessionsAsync : DateTime -> System.Threading.Tasks.Task<seq<Microsoft.ServiceBus.Messaging.MessageSession>>
Public Function GetMessageSessionsAsync (lastUpdatedTime As DateTime) As Task(Of IEnumerable(Of MessageSession))
Parameters
- lastUpdatedTime
- DateTime
The time the session was last updated.
Returns
The asynchronous operation.