FileTranscriptLogger.GetTranscriptActivitiesAsync 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.
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>>
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))
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.
Implements
Remarks
If the task completes successfully, the result contains the matching activities.