Class ChunkInfo
Describes a single chunked upload session.
Inherited Members
Namespace: AjaxUploader.Models
Assembly: AjaxUploader.dll
Syntax
public class ChunkInfo
Constructors
ChunkInfo()
Initializes a new instance of the ChunkInfo class.
Declaration
public ChunkInfo()
Properties
ChunkIndex
Gets or sets the zero-based chunk index.
Declaration
public int ChunkIndex { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
FileName
Gets or sets the original file name.
Declaration
public string FileName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
TotalChunks
Gets or sets the total number of chunks expected for the upload.
Declaration
public int TotalChunks { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
TotalFileSize
Gets or sets the total file size in bytes.
Declaration
public long TotalFileSize { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
UploadId
Gets or sets the client upload session identifier.
Declaration
public string UploadId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |