IActivitySource.Activities(String, String, DateTime) 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.
Produce an enumeration over conversation.
public System.Collections.Generic.IEnumerable<Microsoft.Bot.Connector.IActivity> Activities (string channelId, string conversationId, DateTime oldest = default);
abstract member Activities : string * string * DateTime -> seq<Microsoft.Bot.Connector.IActivity>
Public Function Activities (channelId As String, conversationId As String, Optional oldest As DateTime = Nothing) As IEnumerable(Of IActivity)
Parameters
- channelId
- String
Channel where conversation happened.
- conversationId
- String
Conversation within the channel.
- oldest
- DateTime
Earliest time to include.
Returns
Enumeration over the recorded activities.
Remarks
Activities are ordered by channel, then conversation, then time ascending.