DynamicDictionary Class
.NET Framework 4.5
Namespace:
Microsoft.AspNet.SignalR.Hubs
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Top
Top
Top
Contains an object of the dictionary to store the key-value pairs, and overrides the TrySetMember and TryGetMember methods to support the new syntax.
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
The DynamicDictionary type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Count | Gets the number of items in the dictionary. |
![]() | IsReadOnly | Gets whether the dynamic dictionary is read only. |
![]() | Item | Gets or sets the item with the specific key in the dictionary. |
![]() | Keys | Gets a collection of keys contained in the dictionary. |
![]() | Values | Gets a collection of values contained in the dictionary. |
| Name | Description | |
|---|---|---|
![]() | Add(KeyValuePair<String, Object>) | Adds a specified key/value pair object to the dictionary. |
![]() | Add(String, Object) | Adds the specified key and value to the dictionary. |
![]() | Clear | Removes all keys and values from the dictionary. |
![]() | Contains | Determines whether the Dictionary contains a specific key/value pair item. |
![]() | ContainsKey | Determines whether the Dictionary contains the specified key. |
![]() | CopyTo | Copies the key/value pair elements to an existing one-dimensional Array, starting at the specified array index. |
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | (Inherited from Object.) |
![]() | GetDynamicMemberNames | (Inherited from DynamicObject.) |
![]() | GetEnumerator | Returns an enumerator that iterates through the dictionary. |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetMetaObject | (Inherited from DynamicObject.) |
![]() | GetType | (Inherited from Object.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | Remove(KeyValuePair<String, Object>) | Removes a specific key/ value pair item from the dictionary. |
![]() | Remove(String) | Removes a specific key from the dictionary. |
![]() | ToString | (Inherited from Object.) |
![]() | TryBinaryOperation | (Inherited from DynamicObject.) |
![]() | TryConvert | (Inherited from DynamicObject.) |
![]() | TryCreateInstance | (Inherited from DynamicObject.) |
![]() | TryDeleteIndex | (Inherited from DynamicObject.) |
![]() | TryDeleteMember | (Inherited from DynamicObject.) |
![]() | TryGetIndex | (Inherited from DynamicObject.) |
![]() | TryGetMember | Provides the implementation for operations that get member values. (Overrides DynamicObject::TryGetMember(GetMemberBinder, Object%).) |
![]() | TryGetValue | Gets the value associated with the specified key. |
![]() | TryInvoke | (Inherited from DynamicObject.) |
![]() | TryInvokeMember | (Inherited from DynamicObject.) |
![]() | TrySetIndex | (Inherited from DynamicObject.) |
![]() | TrySetMember | Provides the implementation for operations that set member values. (Overrides DynamicObject::TrySetMember(SetMemberBinder, Object).) |
![]() | TryUnaryOperation | (Inherited from DynamicObject.) |
![]() ![]() | Unwrap | Unwraps a specified value associated with the dictionary. |
![]() ![]() | Wrap | Wraps a specified value associated with the dictionary. |
| Name | Description | |
|---|---|---|
![]() ![]() | IEnumerable::GetEnumerator | Returns an enumerator that iterates through a collection. |
Show:
