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

The component that configures the excel export.

Definition

Constructors

C#
public UploadChunkSettings()

Properties

Sets the delay in milliseconds before retrying a failed chunk upload. Example: 500 for half a second. Used with MaxAutoRetries.

C#
[Parameter]
public double AutoRetryAfter { get; set; }

Enables chunked upload mode. Set to true to split large files into smaller chunks for upload. Example: true. Required for large file uploads and pause/resume support. See Resumable.

C#
[Parameter]
public bool Enabled { get; set; }

Sets the maximum number of retry attempts for a failed chunk. Example: 3. Increase for unreliable networks. See AutoRetryAfter for retry delay.

C#
[Parameter]
public int MaxAutoRetries { get; set; }

Sets the name of the metadata field sent with each chunk. Example: "chunkMetadata". Change if your server expects a different key.

C#
[Parameter]
public string MetadataField { get; set; }

Enables pausing and resuming chunked uploads. Set to true to allow users to pause and resume uploads. Example: true. Requires Enabled to be true.

C#
[Parameter]
public bool Resumable { get; set; }

Sets the chunk size in bytes. Example: 1048576 for 1MB chunks. Adjust for network reliability and server limits. See MaxAutoRetries for retry behavior.

C#
[Parameter]
public double Size { get; set; }

Methods

C#
public void Dispose()

Implements: IDisposable.Dispose()

C#
protected override void OnInitialized()

Overrides: ComponentBase.OnInitialized()