Class RadUploadSelectedFile
Represents a Selected file from the RadUpload.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Input.dll
Syntax
public class RadUploadSelectedFile : Object
Constructors
RadUploadSelectedFile(FileInfo)
Initializes a new instance of the RadUploadSelectedFile class.
Declaration
public RadUploadSelectedFile(FileInfo file)
Parameters
System.IO.FileInfo
file
The file. |
RadUploadSelectedFile(Stream, String)
Initializes a new instance of the RadUploadSelectedFile class.
Declaration
public RadUploadSelectedFile(Stream stream, string fileName)
Parameters
System.IO.Stream
stream
The stream. |
System.String
fileName
Name of the file. |
Properties
File
Pointer to the selected file from the runtime.
Declaration
public FileInfo File { get; }
Property Value
System.IO.FileInfo
|
Name
Gets the file name.
Declaration
public string Name { get; }
Property Value
System.String
|
Size
Gets the file size.
Declaration
public long Size { get; }
Property Value
System.Int64
|