Class FileUploadEventArgs
Represents FileUpload event arguments.
Inheritance
System.Object
System.EventArgs
FileUploadEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Quark.CMSAdapters.QPP.Data
Assembly: Quark.CMSAdapters.QPP.dll
Syntax
public class FileUploadEventArgs : EventArgs
Constructors
FileUploadEventArgs(UploadFileInfo)
Initializes a new instance of the FileUploadEventArgs class.
Declaration
public FileUploadEventArgs(UploadFileInfo fileInfo)
Parameters
Type | Name | Description |
---|---|---|
UploadFileInfo | fileInfo | The file information. |
Properties
Cancel
Gets or sets a value to cancel this event.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
FileInfo
Gets the file information.
Declaration
public UploadFileInfo FileInfo { get; }
Property Value
Type | Description |
---|---|
UploadFileInfo | The file information. |