Class FileUploadedEventArgs
Provides metadata for a file that has been uploaded successfully.
Inherited Members
Namespace: AjaxUploader.Events
Assembly: AjaxUploader.dll
Syntax
public class FileUploadedEventArgs : EventArgs
Constructors
FileUploadedEventArgs()
Initializes a new instance of the FileUploadedEventArgs class.
Declaration
public FileUploadedEventArgs()
Properties
ContentType
Gets or sets the detected content type.
Declaration
public string ContentType { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
FileGuid
Gets or sets the stored GUID for the uploaded file.
Declaration
public Guid FileGuid { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid |
FileName
Gets or sets the original file name.
Declaration
public string FileName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
FileSize
Gets or sets the uploaded file size in bytes.
Declaration
public long FileSize { get; set; }
Property Value
| Type | Description |
|---|---|
| long |