New to Telerik UI for BlazorStart a free 30-day trial

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 message text that was sent.

C#
public string Message { get; set; }

The id of the message to which the current message is a reply.

C#
public string ReplyMessageId { get; set; }