Class
QuotaRequestedEventArgs

QuotaRequestedEvent arguments.

Definition

Namespace:Telerik.Windows.Persistence.Events

Assembly:Telerik.Windows.PersistenceFramework.dll

Syntax:

cs-api-definition
public class QuotaRequestedEventArgs : EventArgs

Inheritance: objectEventArgsQuotaRequestedEventArgs

Inherited Members EventArgs.Empty

Constructors

QuotaRequestedEventArgs(long, bool, Dictionary<string, Stream>)

Initializes a new instance of the QuotaRequestedEventArgs class.

Declaration

cs-api-definition
public QuotaRequestedEventArgs(long requestedBytes, bool isSuccess, Dictionary<string, Stream> fileStreams)

Parameters

requestedBytes

long

The requested bytes.

isSuccess

bool

If set to true [is success].

fileStreams

Dictionary<string, Stream>

The saved streams.

Properties

FileStreams

Gets the file streams.

Declaration

cs-api-definition
public Dictionary<string, Stream> FileStreams { get; }

Property Value

Dictionary<string, Stream>

IsSuccess

Gets a value indicating whether this operation is success.

Declaration

cs-api-definition
public bool IsSuccess { get; }

Property Value

bool

True if this operation is success; otherwise, false.

RequestedBytes

Gets or sets the requested bytes.

Declaration

cs-api-definition
public long RequestedBytes { get; set; }

Property Value

long

The requested bytes.