ItemsDictionary Class¶
- Namespace
Microsoft.AspNetCore.Http.Internal- Assemblies
- Microsoft.AspNetCore.Http
Syntax¶
public class ItemsDictionary : IDictionary<object, object>, ICollection<KeyValuePair<object, object>>, IEnumerable<KeyValuePair<object, object>>, IEnumerable
-
class
Microsoft.AspNetCore.Http.Internal.ItemsDictionary
Constructors¶
-
ItemsDictionary()¶ public ItemsDictionary()
-
ItemsDictionary(System.Collections.Generic.IDictionary<System.Object, System.Object>) public ItemsDictionary(IDictionary<object, object> items)
-
Properties¶
-
Microsoft.AspNetCore.Http.Internal.ItemsDictionary.Items¶ Return type: System.Collections.Generic.IDictionary<System.Object> public IDictionary<object, object> Items { get; }
-
Microsoft.AspNetCore.Http.Internal.ItemsDictionary.Count¶ Return type: System.Int32 int ICollection<KeyValuePair<object, object>>.Count { get; }
-
Microsoft.AspNetCore.Http.Internal.ItemsDictionary.IsReadOnly¶ Return type: System.Boolean bool ICollection<KeyValuePair<object, object>>.IsReadOnly { get; }
-
Microsoft.AspNetCore.Http.Internal.ItemsDictionary.Item[System.Object]¶ Return type: System.Object object IDictionary<object, object>.this[object key] { get; set; }
-
Microsoft.AspNetCore.Http.Internal.ItemsDictionary.Keys¶ Return type: System.Collections.Generic.ICollection<System.Object> ICollection<object> IDictionary<object, object>.Keys { get; }
-
Microsoft.AspNetCore.Http.Internal.ItemsDictionary.Values¶ Return type: System.Collections.Generic.ICollection<System.Object> ICollection<object> IDictionary<object, object>.Values { get; }
-
Methods¶
-
Add(System.Collections.Generic.KeyValuePair<System.Object, System.Object>)¶ void ICollection<KeyValuePair<object, object>>.Add(KeyValuePair<object, object> item)
-
Clear()¶ void ICollection<KeyValuePair<object, object>>.Clear()
-
Contains(System.Collections.Generic.KeyValuePair<System.Object, System.Object>)¶ Return type: System.Boolean bool ICollection<KeyValuePair<object, object>>.Contains(KeyValuePair<object, object> item)
-
CopyTo(System.Collections.Generic.KeyValuePair<System.Object, System.Object>[], System.Int32)¶ void ICollection<KeyValuePair<object, object>>.CopyTo(KeyValuePair<object, object>[] array, int arrayIndex)
-
Remove(System.Collections.Generic.KeyValuePair<System.Object, System.Object>)¶ Return type: System.Boolean bool ICollection<KeyValuePair<object, object>>.Remove(KeyValuePair<object, object> item)
-
Add(System.Object, System.Object) void IDictionary<object, object>.Add(object key, object value)
-
ContainsKey(System.Object)¶ Return type: System.Boolean bool IDictionary<object, object>.ContainsKey(object key)
-
Remove(System.Object) Return type: System.Boolean bool IDictionary<object, object>.Remove(object key)
-
TryGetValue(System.Object, out System.Object)¶ Return type: System.Boolean bool IDictionary<object, object>.TryGetValue(object key, out object value)
-
GetEnumerator()¶ Return type: System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.Object>> IEnumerator<KeyValuePair<object, object>> IEnumerable<KeyValuePair<object, object>>.GetEnumerator()
-
GetEnumerator() Return type: System.Collections.IEnumerator IEnumerator IEnumerable.GetEnumerator()
-