ClassQuotaRequestedEventArgs
Class
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
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
The requested bytes.
isSuccess
If set to true [is success].
fileStreams
The saved streams.
Properties
FileStreams
Gets the file streams.
Declaration
cs-api-definition
public Dictionary<string, Stream> FileStreams { get; }
Property Value
IsSuccess
Gets a value indicating whether this operation is success.
Declaration
cs-api-definition
public bool IsSuccess { get; }
Property Value
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
The requested bytes.