MemoryTranscriptStore Class
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.
The memory transcript store stores transcripts in volatile memory in a Dictionary.
public class MemoryTranscriptStore : Microsoft.Bot.Builder.ITranscriptStore
type MemoryTranscriptStore = class
interface ITranscriptStore
interface ITranscriptLogger
Public Class MemoryTranscriptStore
Implements ITranscriptStore
- Inheritance
-
MemoryTranscriptStore
- Implements
Remarks
Because this uses an unbounded volatile dictionary this should only be used for unit tests or non-production environments.
Constructors
MemoryTranscriptStore() |
Methods
DeleteTranscriptAsync(String, String) |
Deletes conversation data from the store. |
GetTranscriptActivitiesAsync(String, String, String, DateTimeOffset) |
Gets from the store activities that match a set of criteria. |
ListTranscriptsAsync(String, String) |
Gets a page of conversations for a channel from the store. |
LogActivityAsync(IActivity) |
Logs an activity to the transcript. |