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

Represents the event arguments for the Chat OnMessageFilesDownload event.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class ChatDownloadEventArgs

Inheritance: objectChatDownloadEventArgs

Constructors

C#
public ChatDownloadEventArgs()

Properties

Files

IEnumerable<FileSelectFileInfo>

Contains the files to be downloaded. If the event is triggered upon clicking the download action of a specific file, the collection contains only the respective file. If the event is triggered upon clicking the Download All button of the message, the collection contains all files of the message.

C#
public IEnumerable<FileSelectFileInfo> Files { get; set; }

The ID of the message that contains the files to be downloaded.

C#
public string MessageId { get; set; }