Class BeforeDownloadEventArgs<TValue>
Class for BeforeDownload event arguments.
Inheritance
System.Object
BeforeDownloadEventArgs<TValue>
Namespace: Syncfusion.Blazor.FileManager
Assembly: Syncfusion.Blazor.dll
Syntax
public class BeforeDownloadEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | The generic type parameter. |
Constructors
BeforeDownloadEventArgs()
Declaration
public BeforeDownloadEventArgs()
Properties
Cancel
If you want to cancel this event then, set cancel to true. Otherwise, false.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Data
Specifies the data to be sent to server.
Declaration
public DownloadData<TValue> Data { get; set; }
Property Value
Type | Description |
---|---|
DownloadData<TValue> |
DownloadData
Specifies the data to be sent to server.
Declaration
public DownloadData<TValue> DownloadData { get; set; }
Property Value
Type | Description |
---|---|
DownloadData<TValue> |