Version

UploadFinished Event

The UploadFinished event is raised when a file has finished uploading for this control
Syntax
'Declaration
 
Public Event UploadFinished As EventHandler(Of UploadFinishedEventArgs)
public event EventHandler<UploadFinishedEventArgs> UploadFinished
Event Data

The event handler receives an argument of type UploadFinishedEventArgs containing data related to this event. The following UploadFinishedEventArgs properties provide information specific to this event.

PropertyDescription
AdditionalDataFields (Inherited from Infragistics.Web.UI.EditorControls.UploadBaseEventArgs)Gets the additional data fields that could be submitted while uploading the file. It returns dictionary which has as a key - the name of the submitted data field and as a value - the value of the data field
FileError (Inherited from Infragistics.Web.UI.EditorControls.UploadBaseEventArgs)Get file error - by default it is None
FileInfo (Inherited from Infragistics.Web.UI.EditorControls.UploadBaseEventArgs)Gets the file information.
FileName (Inherited from Infragistics.Web.UI.EditorControls.UploadBaseEventArgs)Get file name of the uploading file
FileSize (Inherited from Infragistics.Web.UI.EditorControls.UploadBaseEventArgs)Get file size
FileStatus (Inherited from Infragistics.Web.UI.EditorControls.UploadBaseEventArgs)Get file status of the uploading file
FolderPath (Inherited from Infragistics.Web.UI.EditorControls.UploadBaseEventArgs)Get folder path where the file is uploading
IsServerSideCancelled Get whether upload is canceled by server side event - e.g. UploadStarting, UploadFinishing
MimeType (Inherited from Infragistics.Web.UI.EditorControls.UploadBaseEventArgs)Get MIME type of the uploading file
ServerMessage (Inherited from Infragistics.Web.UI.EditorControls.UploadBaseEventArgs)Set or get server message which is sent to client-side.
TemporaryFileName Get temporary file name(used especially as identifier when save as memory stream is enabled)
UploadedBytes (Inherited from Infragistics.Web.UI.EditorControls.UploadBaseEventArgs)Get uploaded bytes
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also