Web.HTTPApp.TAbstractWebRequestFile.Stream

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Stream: TStream read GetStream;

C++

__property System::Classes::TStream* Stream = {read=GetStream};

Properties

Type Visibility Source Unit Parent
property public
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp TAbstractWebRequestFile

Description

Provides access to the contents of the uploaded file.

Use Stream to read the content of the uploaded file. Call the Read method of this stream to read the file contents.

Note: The ContentType property indicates the format used to encode the file contents that you read from Stream.

See Also