Share via


FileTranscriptLogger.ListTranscriptsAsync(String, String) Method

Definition

Gets the conversations on a channel from the store.

public System.Threading.Tasks.Task<Microsoft.Bot.Builder.PagedResult<Microsoft.Bot.Builder.TranscriptInfo>> ListTranscriptsAsync (string channelId, string continuationToken = default);
abstract member ListTranscriptsAsync : string * string -> System.Threading.Tasks.Task<Microsoft.Bot.Builder.PagedResult<Microsoft.Bot.Builder.TranscriptInfo>>
override this.ListTranscriptsAsync : string * string -> System.Threading.Tasks.Task<Microsoft.Bot.Builder.PagedResult<Microsoft.Bot.Builder.TranscriptInfo>>
Public Function ListTranscriptsAsync (channelId As String, Optional continuationToken As String = Nothing) As Task(Of PagedResult(Of TranscriptInfo))

Parameters

channelId
String

The ID of the channel.

continuationToken
String

Continuation token (if available).

Returns

A task that represents the work queued to execute.

Implements

Remarks

List all transcripts for given ChannelID.

Applies to