System.Collections.Concurrent.ConcurrentDictionary<TKey,TValue>: Method Members

The methods of System.Collections.Concurrent.ConcurrentDictionary<TKey,TValue> are listed below. For a list of all members, see the ConcurrentDictionary<TKey,TValue> Members list.

See Also: Inherited members from System.Object

Public Methods

AddOrUpdate(TKey, Func<TKey, TValue>, Func<TKey, TValue, TValue>) : TValue
Documentation for this section has not yet been entered.
AddOrUpdate(TKey, TValue, Func<TKey, TValue, TValue>) : TValue
Documentation for this section has not yet been entered.
Clear()

Removes all keys and values from the System.Collections.Concurrent.ConcurrentDictionary`2.

ContainsKey(TKey) : bool
Documentation for this section has not yet been entered.
GetEnumerator() : IEnumerator<KeyValuePair<TKey, TValue>>

Returns an enumerator that iterates through the System.Collections.Concurrent.ConcurrentDictionary`2.

GetOrAdd(TKey, Func<TKey, TValue>) : TValue
Documentation for this section has not yet been entered.
GetOrAdd(TKey, TValue) : TValue
Documentation for this section has not yet been entered.
ToArray() : KeyValuePair<TKey, TValue>[]

Copies the key and value pairs stored in the System.Collections.Concurrent.ConcurrentDictionary`2 to a new array.

TryAdd(TKey, TValue) : bool
Documentation for this section has not yet been entered.
TryGetValue(TKey, out TValue) : bool
Documentation for this section has not yet been entered.
TryRemove(TKey, out TValue) : bool
Documentation for this section has not yet been entered.
TryUpdate(TKey, TValue, TValue) : bool
Documentation for this section has not yet been entered.