API ReferenceSandbox.Utility

DataProgressclass

Provides progress information for operations that process blocks of data, such as file uploads, downloads, or large data transfers.

objectDataProgress
Namespace
Sandbox.Utility
Assembly
Sandbox.System
Declaration
public sealed struct Sandbox.Utility.DataProgress

Properties4

Showing 4 properties

public long Sandbox.Utility.DataProgress.DeltaBytes { get; set; }PUBLICGETSET

The number of bytes processed since the last progress update.

Returns:long

public long Sandbox.Utility.DataProgress.ProgressBytes { get; set; }PUBLICGETSET

The number of bytes processed so far.

Returns:long

public float Sandbox.Utility.DataProgress.ProgressDelta { get; set; }PUBLICGETSET

Progress as a fraction from 0.0 to 1.0.

Returns:float

public long Sandbox.Utility.DataProgress.TotalBytes { get; set; }PUBLICGETSET

The total number of bytes to process.

Returns:long

On this page