interface XStream in module com::sun::star::io::

(Global Index)

Syntax

interface XStream : com::sun::star::uno::XInterface ;

Description

offers read and write access to the same stream.

Method Summary

getInputStream

getOutputStream

Method Details



getInputStream

Syntax

com::sun::star::io::XInputStream getInputStream ();

Description

Returns

the XInputStream part of the stream. Closing the returned XInputStream also closes any XOutputStream part.

getOutputStream

Syntax

com::sun::star::io::XOutputStream getOutputStream ();

Description

Returns

the XInputStream part of the stream. Closing the returned XOutputStream also closes the XInputStream part.
Top of Page