Click or drag to resize
UnpackingUnpackString Method (Byte, Int32, Encoding)
Unpacks String value from specified offsetted byte array with specified encoding.

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public static UnpackingResult<string> UnpackString(
	byte[] source,
	int offset,
	Encoding encoding
)

Parameters

source
Type: SystemByte
The byte array which contains Message Pack binary stream.
offset
Type: SystemInt32
The offset to be unpacking start with.
encoding
Type: System.TextEncoding
The Encoding to decode binary stream.

Return Value

Type: UnpackingResultString
The UnpackingResultT of String which contains unpacked String value and processed bytes count.
Exceptions
ExceptionCondition
ArgumentNullExceptionsource is null. Or, encoding is null.
ArgumentExceptionsource is empty. Or, the length of source is not greater than offset.
ArgumentOutOfRangeExceptionoffset is negative value.
UnpackExceptionsource is not valid MessagePack stream.
MessageTypeException The unpacked result in the source is not compatible to String. Or, the unpacked result in the source is invalid as specified encoding byte stream.
Remarks
See Also