NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

BinaryReader.BaseStream

Exposes the underlying stream.

[Visual Basic]
Overridable Public ReadOnly Property BaseStream As Stream
[C#]
public Stream BaseStream {virtual get;}
[C++]
public: __property virtual Stream* get_BaseStream();
[JScript]
public function get BaseStream() : Stream;

Property Value

The underlying stream.

Remarks

Using the underlying stream while reading can cause data loss and corruption. For example, the same bytes might be read more than once, bytes might be skipped, or character reading might become unpredictable.

See Also

BinaryReader Class | BinaryReader Members | System.IO Namespace