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

QuotaRequestedEvent arguments.

Definition

Namespace:Telerik.Windows.Persistence.Events

Assembly:Telerik.Windows.PersistenceFramework.dll

Syntax:

C#
public class QuotaRequestedEventArgs : EventArgs

Inheritance: objectEventArgsQuotaRequestedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the QuotaRequestedEventArgs class.

C#
public QuotaRequestedEventArgs(long requestedBytes, bool isSuccess, Dictionary<string, Stream> fileStreams)
Parameters:requestedByteslong

The requested bytes.

isSuccessbool

If set to true [is success].

fileStreamsDictionary<string, Stream>

The saved streams.

Properties

Gets the file streams.

C#
public Dictionary<string, Stream> FileStreams { get; }

Gets a value indicating whether this operation is success.

C#
public bool IsSuccess { get; }
Property Value:

True if this operation is success; otherwise, false.

Gets or sets the requested bytes.

C#
public long RequestedBytes { get; set; }
Property Value:

The requested bytes.