Provides data for the OnSendMessage event.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class ChatSendMessageEventArgs
Inheritance: objectChatSendMessageEventArgs
Constructors
C#
public ChatSendMessageEventArgs()
Properties
Files
IEnumerable<FileSelectFileInfo>
The attachments that were sent with the message. The collection contains information about the files, such as name, size, and type. Also you can access the file stream if the file is uploaded.
C#
public IEnumerable<FileSelectFileInfo> Files { get; set; }
Indicates whether the message sending operation has been cancelled.
C#
public bool IsCancelled { get; set; }
The id of the message to which the current message is a reply.
C#
public string ReplyMessageId { get; set; }