Skip to main content
A newer version of this page is available. .
Tab

FileManagerFileUploadEventArgs.InputStream Property

Gets a stream object that points to the uploaded file.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public Stream InputStream { get; }

Property Value

Type Description
Stream

A Stream object that points to the uploaded file.

Remarks

ASPxFileManager allows you to edit (modify, check etc.) a file before uploading it to the server. You can obtain a processed file via the InputStream property, perform actions on the stream, and upload it to the server by setting the FileManagerFileUploadEventArgs.OutputStream property.

See Also