Class Map
A Map class is an AMQP map.
Inheritance
System.Object
System.Collections.Generic.Dictionary<System.Object, System.Object>
Map
Implements
System.Collections.Generic.IDictionary<System.Object, System.Object>
System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.Object, System.Object>>
System.Collections.IDictionary
System.Collections.ICollection
System.Collections.Generic.IReadOnlyDictionary<System.Object, System.Object>
System.Collections.Generic.IReadOnlyCollection<System.Collections.Generic.KeyValuePair<System.Object, System.Object>>
System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Object, System.Object>>
System.Collections.IEnumerable
System.Runtime.Serialization.ISerializable
System.Runtime.Serialization.IDeserializationCallback
Inherited Members
System.Collections.Generic.Dictionary<System.Object, System.Object>.Add(System.Object, System.Object)
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.Object, System.Object>>.Add(System.Collections.Generic.KeyValuePair<System.Object, System.Object>)
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.Object, System.Object>>.Contains(System.Collections.Generic.KeyValuePair<System.Object, System.Object>)
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.Object, System.Object>>.Remove(System.Collections.Generic.KeyValuePair<System.Object, System.Object>)
System.Collections.Generic.Dictionary<System.Object, System.Object>.Clear()
System.Collections.Generic.Dictionary<System.Object, System.Object>.ContainsKey(System.Object)
System.Collections.Generic.Dictionary<System.Object, System.Object>.ContainsValue(System.Object)
System.Collections.Generic.Dictionary<System.Object, System.Object>.GetEnumerator()
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Object, System.Object>>.GetEnumerator()
System.Collections.Generic.Dictionary<System.Object, System.Object>.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)
System.Collections.Generic.Dictionary<System.Object, System.Object>.OnDeserialization(System.Object)
System.Collections.Generic.Dictionary<System.Object, System.Object>.Remove(System.Object)
System.Collections.Generic.Dictionary<System.Object, System.Object>.TryGetValue(System.Object, System.Object)
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.Object, System.Object>>.CopyTo(System.Collections.Generic.KeyValuePair<System.Object, System.Object>[], System.Int32)
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.ICollection.CopyTo(System.Array, System.Int32)
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.IEnumerable.GetEnumerator()
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.IDictionary.get_Item(System.Object)
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.IDictionary.set_Item(System.Object, System.Object)
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.IDictionary.Add(System.Object, System.Object)
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.IDictionary.Contains(System.Object)
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.IDictionary.GetEnumerator()
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.IDictionary.Remove(System.Object)
System.Collections.Generic.Dictionary<System.Object, System.Object>.Comparer
System.Collections.Generic.Dictionary<System.Object, System.Object>.Count
System.Collections.Generic.Dictionary<System.Object, System.Object>.Keys
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.Generic.IDictionary<System.Object, System.Object>.Keys
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.Generic.IReadOnlyDictionary<System.Object, System.Object>.Keys
System.Collections.Generic.Dictionary<System.Object, System.Object>.Values
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.Generic.IDictionary<System.Object, System.Object>.Values
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.Generic.IReadOnlyDictionary<System.Object, System.Object>.Values
System.Collections.Generic.Dictionary<System.Object, System.Object>.Item[System.Object]
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.Object, System.Object>>.IsReadOnly
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.ICollection.IsSynchronized
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.ICollection.SyncRoot
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.IDictionary.IsFixedSize
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.IDictionary.IsReadOnly
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.IDictionary.Keys
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.IDictionary.Values
System.Collections.Generic.Dictionary<System.Object, System.Object>.System.Collections.IDictionary.Item[System.Object]
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Amqp.Types
Assembly: Amqp.Net.dll
Syntax
public class Map : Dictionary<object, object>, IDictionary<object, object>, ICollection<KeyValuePair<object, object>>, IDictionary, ICollection, IReadOnlyDictionary<object, object>, IReadOnlyCollection<KeyValuePair<object, object>>, IEnumerable<KeyValuePair<object, object>>, IEnumerable, ISerializable, IDeserializationCallback
Properties
Item[Object]
Gets or sets an item in the map.
Declaration
public object this[object key] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System.Object | key | The key of the item. |
Property Value
Type | Description |
---|---|
System.Object |
Methods
ToString()
Returns a string that represents the current map object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.Object.ToString()
Implements
System.Collections.Generic.IDictionary<TKey, TValue>
System.Collections.Generic.ICollection<T>
System.Collections.IDictionary
System.Collections.ICollection
System.Collections.Generic.IReadOnlyDictionary<TKey, TValue>
System.Collections.Generic.IReadOnlyCollection<T>
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable
System.Runtime.Serialization.ISerializable
System.Runtime.Serialization.IDeserializationCallback