Class ThreadContextItemsGenericDictionaryWrapper
Wrapper over System.Collections.Generic.IDictionary<TKey, TValue> whose generic type argument are (object, object) implementing IThreadContextItems interface.
public class ThreadContextItemsGenericDictionaryWrapper : IThreadContextItems
- Inheritance
-
objectThreadContextItemsGenericDictionaryWrapper
- Implements
- Extension Methods
Constructors
ThreadContextItemsGenericDictionaryWrapper(IDictionary<object, object>)
Initializes a new instance of the ThreadContextItemsGenericDictionaryWrapper class.
public ThreadContextItemsGenericDictionaryWrapper(IDictionary<object, object> dictionary)
Parameters
dictionary
IDictionary<object, object>Underlying dictionary.
Properties
this[string]
Gets or sets the value associated with the specified key.
public object this[string key] { get; set; }
Parameters
key
string
Property Value
- object
Methods
ContainsKey(string)
Determines whether the ThreadContextItemsGenericDictionaryWrapper contains the specified key.
public bool ContainsKey(string key)
Parameters
key
string
Returns
- bool
GetEnumerator()
Returns an enumerator that iterates through the collection.
public IEnumerator<KeyValuePair<string, object>> GetEnumerator()
Returns
- IEnumerator<KeyValuePair<string, object>>
Remove(string)
Removes the value with the specified key from the ThreadContextItemsGenericDictionaryWrapper.
public bool Remove(string key)
Parameters
key
string
Returns
- bool