Click or drag to resize
PackerCreate Method (Stream, Boolean)
Create standard Safe Packer instancde wrapping specified Stream with DefaultCompatibilityOptions.

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public static Packer Create(
	Stream stream,
	bool ownsStream
)

Parameters

stream
Type: System.IOStream
Stream object.
ownsStream
Type: SystemBoolean
true to close stream when this instance is disposed; false, otherwise.

Return Value

Type: Packer
Safe Packer. This will not be null.
Exceptions
ExceptionCondition
ArgumentNullExceptionstream is null.
Remarks
You can specify any derived Stream class like FileStream, MemoryStream, NetworkStream, UnmanagedMemoryStream, or so.
See Also