Implements mapping table between known ext type codes and names.
Inheritance Hierarchy
Namespace: MsgPack.SerializationAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public sealed class ExtTypeCodeMapping : IEnumerable<KeyValuePair<string, byte>>,
IEnumerable
Public NotInheritable Class ExtTypeCodeMapping
Implements IEnumerable(Of KeyValuePair(Of String, Byte)),
IEnumerable
public ref class ExtTypeCodeMapping sealed : IEnumerable<KeyValuePair<String^, unsigned char>>,
IEnumerable
[<SealedAttribute>]
type ExtTypeCodeMapping =
class
interface IEnumerable<KeyValuePair<string, byte>>
interface IEnumerable
end
The ExtTypeCodeMapping type exposes the following members.
Properties
| Name | Description |
---|
| Item |
Gets a mapped byte to the specified ext type name.
|
TopMethods
| Name | Description |
---|
| Add |
Adds the known ext type mapping.
|
| Clear |
Clears all mappings.
|
| GetEnumerator |
Returns an enumerator that iterates through the collection.
|
| Remove(Byte) |
Removes the mapping with specified code.
|
| Remove(String) |
Removes the mapping with specified name.
|
TopRemarks 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