Table of Contents

Class MessagePackCode

Namespace
Nerdbank.MessagePack
Assembly
Nerdbank.MessagePack.dll

The core type codes as defined by msgpack.

public static class MessagePackCode
Inheritance
MessagePackCode
Inherited Members

Fields

Array16

public const byte Array16 = 220

Field Value

byte

Array32

public const byte Array32 = 221

Field Value

byte

Bin16

public const byte Bin16 = 197

Field Value

byte

Bin32

public const byte Bin32 = 198

Field Value

byte

Bin8

public const byte Bin8 = 196

Field Value

byte

Ext16

public const byte Ext16 = 200

Field Value

byte

Ext32

public const byte Ext32 = 201

Field Value

byte

Ext8

public const byte Ext8 = 199

Field Value

byte

False

public const byte False = 194

Field Value

byte

FixExt1

public const byte FixExt1 = 212

Field Value

byte

FixExt16

public const byte FixExt16 = 216

Field Value

byte

FixExt2

public const byte FixExt2 = 213

Field Value

byte

FixExt4

public const byte FixExt4 = 214

Field Value

byte

FixExt8

public const byte FixExt8 = 215

Field Value

byte

Float32

public const byte Float32 = 202

Field Value

byte

Float64

public const byte Float64 = 203

Field Value

byte

Int16

public const byte Int16 = 209

Field Value

byte

Int32

public const byte Int32 = 210

Field Value

byte

Int64

public const byte Int64 = 211

Field Value

byte

Int8

public const byte Int8 = 208

Field Value

byte

Map16

public const byte Map16 = 222

Field Value

byte

Map32

public const byte Map32 = 223

Field Value

byte

MaxFixArray

public const byte MaxFixArray = 159

Field Value

byte

MaxFixInt

public const byte MaxFixInt = 127

Field Value

byte

MaxFixMap

public const byte MaxFixMap = 143

Field Value

byte

MaxFixStr

public const byte MaxFixStr = 191

Field Value

byte

MaxNegativeFixInt

public const byte MaxNegativeFixInt = 255

Field Value

byte

MinFixArray

public const byte MinFixArray = 144

Field Value

byte

MinFixInt

public const byte MinFixInt = 0

Field Value

byte

MinFixMap

public const byte MinFixMap = 128

Field Value

byte

MinFixStr

public const byte MinFixStr = 160

Field Value

byte

MinNegativeFixInt

public const byte MinNegativeFixInt = 224

Field Value

byte

NeverUsed

public const byte NeverUsed = 193

Field Value

byte

Nil

public const byte Nil = 192

Field Value

byte

Str16

public const byte Str16 = 218

Field Value

byte

Str32

public const byte Str32 = 219

Field Value

byte

Str8

public const byte Str8 = 217

Field Value

byte

True

public const byte True = 195

Field Value

byte

UInt16

public const byte UInt16 = 205

Field Value

byte

UInt32

public const byte UInt32 = 206

Field Value

byte

UInt64

public const byte UInt64 = 207

Field Value

byte

UInt8

public const byte UInt8 = 204

Field Value

byte

Methods

ToFormatName(byte)

public static string ToFormatName(byte code)

Parameters

code byte

Returns

string

ToMessagePackType(byte)

public static MessagePackType ToMessagePackType(byte code)

Parameters

code byte

Returns

MessagePackType

See Also