Class FileManagerDownloadEventArgs
The event arguments for the OnDownload event.
Inheritance
System.Object
Telerik.Blazor.Components.FileManagerEventArgsBase
Telerik.Blazor.Components.FileManager.FileManagerCancelableEventArgs
FileManagerDownloadEventArgs
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class FileManagerDownloadEventArgs : FileManagerCancelableEventArgs
Constructors
FileManagerDownloadEventArgs()
Declaration
public FileManagerDownloadEventArgs()
FileManagerDownloadEventArgs(Object)
Declaration
public FileManagerDownloadEventArgs(object item)
Parameters
System.Object
item
|
Properties
FileName
Allows overriding the original file name for download.
Declaration
public string FileName { get; set; }
Property Value
System.String
|
Item
The item that is downloaded.
Declaration
public object Item { get; set; }
Property Value
System.Object
|
MimeType
The mime type of the content.
Declaration
public string MimeType { get; set; }
Property Value
System.String
|
Stream
The output as a stream.
Declaration
public MemoryStream Stream { get; set; }
Property Value
System.IO.MemoryStream
|