Xml.xmldom.IDOMPersist.saveToStream

From RAD Studio API Documentation
Jump to: navigation, search


Delphi

procedure saveToStream(const stream: TStream); overload; safecall;
procedure saveToStream(const stream: IStream); overload; safecall;

C++

virtual HRESULT __safecall saveToStream(System::Classes::TStream* const stream) = 0 /* overload */;
virtual HRESULT __safecall saveToStream(const _di_IStream stream) = 0 /* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
public
Xml.Xmldom.pas
Xml.xmldom.hpp
Xml.xmldom IDOMPersist

Description

Saves the xml to a stream.

Use the saveToStream method to save the xml to the stream specified by the stream parameter.

saveToStream can either be called with a TStream type parameter or an IStream type parameter.

See Also