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

FileManagerFileUploadEventArgs.OutputStream Property

Gets a stream object that points to the uploaded file.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public Stream OutputStream { get; set; }

Property Value

Type Description
Stream

A Stream object to which the modified file stream is sent.

Remarks

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

Note

The file content provided by the OutputStream property shouldn’t be disposed.

See Also