Class RadUploadReturnedData
Holds the returned data from the upload handler.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Input.dll
Syntax
public class RadUploadReturnedData : Object
Constructors
RadUploadReturnedData()
Initializes a new instance of the RadUploadReturnedData class.
Declaration
public RadUploadReturnedData()
Properties
CustomData
Gets the custom data returned from the upload handler. This is populated when custom handler is used and the AssociatedData property of the handler has been overloaded.
Declaration
public Dictionary<string, object> CustomData { get; }
Property Value
System.Collections.Generic.Dictionary<System.String, System.Object>
The custom data. |
IsFinalRequest
Gets a value indicating whether this was the final request for the file.
Declaration
public bool IsFinalRequest { get; }
Property Value
System.Boolean
|
IsSuccess
Gets or sets a value indicating whether the request is success.
Declaration
public bool IsSuccess { get; }
Property Value
System.Boolean
|
Message
Gets the message returned from the upload handler.
Declaration
public string Message { get; }
Property Value
System.String
The message. |