ITranscriptStore.GetTranscriptActivitiesAsync Method

Definition

Gets from the store activities that match a set of criteria.

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>>
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))

Parameters

channelId
String

The ID of the channel the conversation is in.

conversationId
String

The ID of the conversation.

continuationToken
String

The continuation token (if available).

startDate
DateTimeOffset

A cutoff date. Activities older than this date are not included.

Returns

A task that represents the work queued to execute.

Remarks

If the task completes successfully, the result contains the matching activities.

Applies to