Skip to main content
Tab

FileUploadCompleteEventArgs.UploadedFile Property

Gets the uploaded file object related to the event.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public UploadedFile UploadedFile { get; }

Property Value

Type Description
UploadedFile

An UploadedFile object that represents the uploaded file related to the event.

Remarks

Use the UploadedFile property to access and manipulate an object representing the uploaded file. You can, for instance, use the object’s UploadedFile.SaveAs method, to save the uploaded file specifying the full path on the server.

See Also