FileTranscriptLogger.GetTranscriptActivitiesAsync 方法

定义

从与一组条件匹配的存储活动中获取。

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

参数

channelId
String

对话所传入的通道的 ID。

conversationId
String

会话的 ID。

continuationToken
String

延续标记(如果可用)。

startDate
DateTimeOffset

截止日期。 不包括早于此日期的活动。

返回

表示要执行的工作的任务。

实现

注解

如果任务成功完成,则结果包含匹配的活动。

适用于