Class QuotaRequestedEventArgs
QuotaRequestedEvent arguments.
Inheritance
Namespace: Telerik.Windows.Persistence.Events
Assembly: Telerik.Windows.PersistenceFramework.dll
Syntax
public class QuotaRequestedEventArgs : EventArgs
Constructors
QuotaRequestedEventArgs(Int64, Boolean, Dictionary<String, Stream>)
Initializes a new instance of the Quota
Declaration
public QuotaRequestedEventArgs(long requestedBytes, bool isSuccess, Dictionary<string, Stream> fileStreams)
Parameters
System. The requested bytes. |
System. If set to |
System. The saved streams. |
Properties
FileStreams
Gets the file streams.
Declaration
public Dictionary<string, Stream> FileStreams { get; }
Property Value
System.
|
IsSuccess
Gets a value indicating whether this operation is success.
Declaration
public bool IsSuccess { get; }
Property Value
System.
|
RequestedBytes
Gets or sets the requested bytes.
Declaration
public long RequestedBytes { get; set; }
Property Value
System. The requested bytes. |