HeaderDictionary Class

.NET Framework 4.5

Represents a mapping from a set of keys to a set of values for SignalR client.

System::Object
  Microsoft.AspNet.SignalR.Client::HeaderDictionary

Namespace:  Microsoft.AspNet.SignalR.Client
Assembly:  Microsoft.AspNet.SignalR.Client (in Microsoft.AspNet.SignalR.Client.dll)

public ref class HeaderDictionary : IDictionary<String^, String^>, 
	ICollection<KeyValuePair<String^, String^>>, IEnumerable<KeyValuePair<String^, String^>>, 
	IEnumerable

The HeaderDictionary type exposes the following members.

  NameDescription
Public methodHeaderDictionaryInitializes a new instance of the HeaderDictionary class.
Top

  NameDescription
Public propertyCountGets the number of key/value pairs contained in the dictionary.
Public propertyIsReadOnlyGets whether the dictionary is read only.
Public propertyItemGets or sets the value associated with the specified key.
Public propertyKeysGets the collection of keys in the dictionary.
Public propertyValuesGets the collection of values in the dictionary.
Top

  NameDescription
Public methodAdd(KeyValuePair<String, String>)Adds a specific item to the dictionary.
Public methodAdd(String, String)Adds a specific key/value pair to the dictionary.
Public methodClearClears the content of the dictionary.
Public methodContainsSpecifies whether an item is contained in the dictionary.
Public methodContainsKeySpecifies whether a specified key is contained in the dictionary.
Public methodCopyToCopies the key/value pair elements to an existing one-dimensional Array, starting at the specified array index.
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetEnumeratorReturns an enumerator that iterates through the dictionary.
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodRemove(KeyValuePair<String, String>)Removes a specific key/ value pair item from the dictionary.
Public methodRemove(String)Removes a specific key from the dictionary.
Public methodToString (Inherited from Object.)
Public methodTryGetValueGets the value associated with the specified key.
Top

  NameDescription
Explicit interface implemetationPrivate methodIEnumerable::GetEnumeratorReturns an enumerator that iterates through a collection.
Top

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Show: