Table of Contents

Method LoadStream

Namespace
Alternet.Syntax
Assembly
Alternet.Syntax.v9.dll

LoadStream(TextReader)

When implemented by a class, loads the contents of the specified stream.

bool LoadStream(TextReader reader)

Parameters

reader TextReader

The TextReader object to read text.

Returns

bool

True is succeed; otherwise false.

LoadStream(Stream)

When implemented by a class, loads the contents of the specified stream.

bool LoadStream(Stream stream)

Parameters

stream Stream

The Stream object to read text.

Returns

bool

True is succeed; otherwise false.

LoadStream(Stream, Encoding)

When implemented by a class, loads the contents of the specified stream.

bool LoadStream(Stream stream, Encoding encoding)

Parameters

stream Stream

The Stream object to read text.

encoding Encoding

Specifies the character encoding to use.

Returns

bool

True is succeed; otherwise false.