Class ChatMessageSendEventArgs
Represents the event arguments for the MessageSend event in the SfChatUI component.
Inheritance
System.Object
ChatMessageSendEventArgs
Namespace: Syncfusion.Blazor.InteractiveChat
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChatMessageSendEventArgs : Object
Constructors
ChatMessageSendEventArgs()
Declaration
public ChatMessageSendEventArgs()
Properties
Cancel
Gets or sets whether the current operation can be canceled in the SfChatUI component.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | A System.Boolean indicating if the operation can be canceled. The default value is |
Remarks
This property specifies if the user has the option to cancel the ongoing operation within the SfChatUI component.
Message
Gets or sets the chat message details in the SfChatUI component.
Declaration
public ChatMessage Message { get; set; }
Property Value
Type | Description |
---|---|
ChatMessage | A ChatMessage object containing the message details. The default value is a new instance of ChatMessage. |
Remarks
This property holds the details of a chat message, including its content, sender, and timestamp, within the SfChatUI component.