QuotaRequestedEvent arguments.
Definition
Namespace:Telerik.Windows.Persistence.Events
Assembly:Telerik.Windows.PersistenceFramework.dll
Syntax:
C#
public class QuotaRequestedEventArgs : EventArgs
Inheritance: objectEventArgsQuotaRequestedEventArgs
Inherited Members
Constructors
Initializes a new instance of the QuotaRequestedEventArgs class.
C#
public QuotaRequestedEventArgs(long requestedBytes, bool isSuccess, Dictionary<string, Stream> fileStreams)
The requested bytes.
isSuccessboolIf set to true [is success].
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; }
True if this operation is success; otherwise, false.
Gets or sets the requested bytes.
C#
public long RequestedBytes { get; set; }
The requested bytes.