MessagesEventArgs
Namespace: Wisej.AI
Assembly: Wisej.AI
Provides data for events that involve a collection of messages in the SmartSession API.
- C#
- VB.NET
public class MessagesEventArgs : EventArgs
Public Class MessagesEventArgs
Inherits EventArgs
Constructors
MessagesEventArgs(session, messages)
Initializes a new instance of the MessagesEventArgs class with the specified list of messages.
| Name | Type | Description |
|---|---|---|
| session | SmartSession | The SmartSession associated with the event. |
| messages | IList<Message> | The list of messages associated with the event. |
Properties
Messages
IList<Message>: Gets the list of messages sent and received.
Session
SmartSession: Gets the session associated with the event.
Used By
| Name | Description |
|---|---|
| SmartSession.MessagesEventHandler | Represents the method that will handle message-related events for the SmartSession object. |