Click or drag to resize
ExtTypeCodeMapping Class
Implements mapping table between known ext type codes and names.
Inheritance Hierarchy
SystemObject
  MsgPack.SerializationExtTypeCodeMapping

Namespace: MsgPack.Serialization
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public sealed class ExtTypeCodeMapping : IEnumerable<KeyValuePair<string, byte>>, 
	IEnumerable

The ExtTypeCodeMapping type exposes the following members.

Properties
  NameDescription
Public propertyItem
Gets a mapped byte to the specified ext type name.
Top
Methods
  NameDescription
Public methodAdd
Adds the known ext type mapping.
Public methodClear
Clears all mappings.
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
Public methodRemove(Byte)
Removes the mapping with specified code.
Public methodRemove(String)
Removes the mapping with specified name.
Top
Remarks
Well-known (pre-defined) ext type names are defined in KnownExtTypeName, and their default mapped codes are found in KnownExtTypeCode.
Thread Safety
Static members of this type are safe for multi-threaded operations. Instance members of this type are safe for multi-threaded operations.
See Also