Class
ChatSendMessageEventArgs

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class ChatSendMessageEventArgs

Inheritance: objectChatSendMessageEventArgs

Constructors

ChatSendMessageEventArgs()

Declaration

cs-api-definition
public ChatSendMessageEventArgs()

Properties

Files

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.

Declaration

cs-api-definition
public IEnumerable<FileSelectFileInfo> Files { get; set; }

Property Value

IEnumerable<FileSelectFileInfo>

Message

The message text that was sent.

Declaration

cs-api-definition
public string Message { get; set; }

Property Value

string

ReplyMessageId

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

Declaration

cs-api-definition
public string ReplyMessageId { get; set; }

Property Value

string