UnpackerCreate Method (Stream) |
Creates the new
Unpacker from specified stream.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public static Unpacker Create(
Stream stream
)
Public Shared Function Create (
stream As Stream
) As Unpacker
public:
static Unpacker^ Create(
Stream^ stream
)
static member Create :
stream : Stream -> Unpacker
Parameters
- stream
- Type: System.IOStream
The stream to be unpacked. This stream will be closed when Dispose(Boolean) is called.
Return Value
Type:
UnpackerUnpacker instance.
See Also