Click or drag to resize
UnpackingStream Class
Represents raw binary as read only Stream.
Inheritance Hierarchy

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public abstract class UnpackingStream : Stream

The UnpackingStream type exposes the following members.

Properties
  NameDescription
Public propertyCanRead
Gets a value indicating whether the current stream supports reading.
(Overrides StreamCanRead.)
Public propertyCanTimeout
Gets a value that determines whether the current stream can time out.
(Overrides StreamCanTimeout.)
Public propertyCanWrite
Gets a value indicating whether the current stream supports writing.
(Overrides StreamCanWrite.)
Public propertyLength
Gets the length in bytes of the stream.
(Overrides StreamLength.)
Top
Methods
Remarks

This object behaves as wrapper of the underlying Stream which contains message pack encoded byte array. But, this object does not own the stream, so that stream is not closed when this stream is closed.

The value of CanSeek, timeout, and async API depends on the underlying stream.

See Also