Class ConversationEvent
Base class for all conversation events.
Inheritance
ConversationEvent
Assembly: Glitch9.AIDevKit.dll
Syntax
public abstract class ConversationEvent : IEvent
Methods
|
Edit this page
View Source
Created(Conversation)
Creates a new conversation created event.
Declaration
public static ConversationEvent Created(Conversation conversation)
Parameters
Returns
|
Edit this page
View Source
Deleted(string, bool)
Creates a new conversation deleted event.
Declaration
public static ConversationEvent Deleted(string conversationId, bool success)
Parameters
| Type |
Name |
Description |
| string |
conversationId |
|
| bool |
success |
|
Returns
|
Edit this page
View Source
ItemsLoaded(string, ConversationItem[])
Creates a new conversation items loaded event.
Declaration
public static ConversationEvent ItemsLoaded(string conversationId, ConversationItem[] items)
Parameters
Returns
|
Edit this page
View Source
ListLoaded(Conversation[])
Creates a new conversation list loaded event.
Declaration
public static ConversationEvent ListLoaded(Conversation[] conversations)
Parameters
Returns
|
Edit this page
View Source
Loaded(Conversation)
Creates a new conversation loaded event.
Declaration
public static ConversationEvent Loaded(Conversation conversation)
Parameters
Returns
|
Edit this page
View Source
SummaryUpdated(string, string)
Creates a new conversation summary updated event.
Declaration
public static ConversationEvent SummaryUpdated(string conversationId, string newSummary)
Parameters
| Type |
Name |
Description |
| string |
conversationId |
|
| string |
newSummary |
|
Returns
|
Edit this page
View Source
TitleUpdated(string, string)
Creates a new conversation title updated event.
Declaration
public static ConversationEvent TitleUpdated(string conversationId, string newTitle)
Parameters
Returns
Implements
Extension Methods