Class ThreadContextItemsDictionaryWrapper
Wrapper over System.Collections.IDictionary object implementing IThreadContextItems interface.
[Obsolete("Class is deprecated and will be removed.")]
[ObsoleteSince(29, 3)]
public class ThreadContextItemsDictionaryWrapper : IThreadContextItems
- Inheritance
-
objectThreadContextItemsDictionaryWrapper
- Implements
- Extension Methods
Constructors
ThreadContextItemsDictionaryWrapper(IDictionary)
Initializes a new instance of the ThreadContextItemsDictionaryWrapper class.
public ThreadContextItemsDictionaryWrapper(IDictionary dict)
Parameters
dict
IDictionaryUnderlying 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 ThreadContextItemsDictionaryWrapper 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 ThreadContextItemsDictionaryWrapper.
public bool Remove(string key)
Parameters
key
string
Returns
- bool