PacketReaderBaseStream Property |
Exposes access to the underlying stream (or null).
Only returns a stream if the underlying data source is a Stream.
Namespace:
Demo3D.IO
Assembly:
Demo3D.IO (in Demo3D.IO.dll) Version: 15.0.2.11458
Syntaxpublic virtual Stream? BaseStream { get; }Property Value
Type:
Stream
Remarks
You should first test that
Remaining returns 0 before reading data from the Stream.
Otherwise you risk missing data that's already been read from the stream and buffered.
See Also