Class UploaderDefaults
Defines default configuration constants for the file uploader component.
Inheritance
System.Object
UploaderDefaults
Namespace: Syncfusion.Blazor.Toolkit.Inputs
Assembly: Syncfusion.Blazor.Toolkit.dll
Syntax
public static class UploaderDefaults : Object
Fields
ChunkSize
Default chunk size in bytes (0 - chunking disabled by default).
Declaration
public const long ChunkSize = 0L
Field Value
| Type |
|---|
| System.Int64 |
MaxFileSize
Default maximum file size in bytes (30 MB).
Declaration
public const long MaxFileSize = 30000000L
Field Value
| Type |
|---|
| System.Int64 |
MinFileSize
Default minimum file size in bytes (0 bytes - no minimum restriction).
Declaration
public const long MinFileSize = 0L
Field Value
| Type |
|---|
| System.Int64 |
RetryAfterDelay
Default delay in milliseconds before retrying a failed upload.
Declaration
public const int RetryAfterDelay = 500
Field Value
| Type |
|---|
| System.Int32 |
RetryCount
Default retry count for failed upload operations.
Declaration
public const int RetryCount = 3
Field Value
| Type |
|---|
| System.Int32 |