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 QuotaRequestedEventArgs class.
Declaration
public QuotaRequestedEventArgs(long requestedBytes, bool isSuccess, Dictionary<string, Stream> fileStreams)
Parameters
System.Int64
requestedBytes
The requested bytes. |
System.Boolean
isSuccess
If set to |
System.Collections.Generic.Dictionary<System.String, System.IO.Stream>
fileStreams
The saved streams. |
Properties
FileStreams
Gets the file streams.
Declaration
public Dictionary<string, Stream> FileStreams { get; }
Property Value
System.Collections.Generic.Dictionary<System.String, System.IO.Stream>
|
IsSuccess
Gets a value indicating whether this operation is success.
Declaration
public bool IsSuccess { get; }
Property Value
System.Boolean
|
RequestedBytes
Gets or sets the requested bytes.
Declaration
public long RequestedBytes { get; set; }
Property Value
System.Int64
The requested bytes. |