Table of Contents

Interface IProviderDictionary<TKey, TValue>

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

Represents a generic implementation of provider dictionary.

public interface IProviderDictionary<in TKey, TValue> : IProviderDictionary

Type Parameters

TKey
TValue
Inherited Members
Extension Methods

Methods

Add(TKey, TValue)

Adds the specified object.

void Add(TKey key, TValue value)

Parameters

key TKey

Key to add

value TValue

Value

ContainsKey(TKey)

Returns true if the table contains specified record.

bool ContainsKey(TKey key)

Parameters

key TKey

Key to check

Returns

bool

Remove(TKey)

Removes the specified object.

void Remove(TKey key)

Parameters

key TKey

Key to remove

TryGetValue(TKey, out TValue)

Returns true if the table contains specified record.

bool TryGetValue(TKey key, out TValue value)

Parameters

key TKey

Key to check

value TValue

Returns the object value if the object is present

Returns

bool