Table of Contents

Class UploadChunkCommandArguments

Namespace
Kentico.Xperience.Admin.Base
Assembly
Kentico.Xperience.Admin.Base.dll

Chunk upload arguments.

public abstract class UploadChunkCommandArguments
Inheritance
object
UploadChunkCommandArguments
Derived
Extension Methods

Remarks

This API supports the framework infrastructure and is not intended to be used directly from your code.

Constructors

UploadChunkCommandArguments()

protected UploadChunkCommandArguments()

Properties

ChunkData

File binary data.

[Obsolete("Use ChunkFile instead.")]
public byte[] ChunkData { get; set; }

Property Value

byte[]

ChunkFile

Uploaded asset.

[BindUploadedFile]
public IUploadedFile ChunkFile { get; set; }

Property Value

IUploadedFile

ChunkId

Chunk ID.

public int ChunkId { get; set; }

Property Value

int

FileIdentifier

File identifier under which the file is saved on the disk.

public string FileIdentifier { get; set; }

Property Value

string

FileName

Uploaded file name with extension that is to be saved in content item asset metadata.

public string FileName { get; set; }

Property Value

string

FileSize

File size.

public long FileSize { get; set; }

Property Value

long