ChannelServiceHandlerBase.HandleGetConversationPagedMembersAsync 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.
Enumerates the members of a conversation one page at a time.
public System.Threading.Tasks.Task<Microsoft.Bot.Schema.PagedMembersResult> HandleGetConversationPagedMembersAsync (string authHeader, string conversationId, int? pageSize = default, string continuationToken = default, System.Threading.CancellationToken cancellationToken = default);
member this.HandleGetConversationPagedMembersAsync : string * string * Nullable<int> * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Bot.Schema.PagedMembersResult>
Public Function HandleGetConversationPagedMembersAsync (authHeader As String, conversationId As String, Optional pageSize As Nullable(Of Integer) = Nothing, Optional continuationToken As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of PagedMembersResult)
Parameters
- authHeader
- String
The authentication header.
- conversationId
- String
The conversation Id.
- continuationToken
- String
A continuation token.
- cancellationToken
- CancellationToken
A cancellation token that can be used by other objects or threads to receive notice of cancellation.
Returns
A Task<TResult> representing the result of the asynchronous operation.