Table of Contents

Class ProviderInfoDictionary<TKey>

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

BaseInfo dictionary.

public class ProviderInfoDictionary<TKey> : ProviderDictionary<TKey, BaseInfo>, IProviderDictionary<TKey, BaseInfo>, IProviderDictionary

Type Parameters

TKey
Inheritance
object
ProviderInfoDictionary<TKey>
Implements
Inherited Members
Extension Methods

Remarks

Uses System.StringComparer.InvariantCultureIgnoreCase as default comparer for string types.

Constructors

ProviderInfoDictionary(string, string, IEqualityComparer<TKey>, bool, bool)

Constructor.

public ProviderInfoDictionary(string objectType, string columnNames, IEqualityComparer<TKey> comparer = null, bool allowNulls = false, bool useWeakReferences = false)

Parameters

objectType string

Object type

columnNames string

Column names included in the object key (list of columns separated by semicolon)

comparer IEqualityComparer<TKey>

Equality comparer for the items

allowNulls bool

Indicates whether null value will be considered as valid and will be cached.

useWeakReferences bool

Indicates whether cache item can be removed from cache in case of insufficient memory.

Methods

Add(TKey, BaseInfo, bool)

Adds the specified object.

public override void Add(TKey key, BaseInfo value, bool logTask)

Parameters

key TKey

Key to add

value BaseInfo

Value

logTask bool

If true, web farm task is logged

ConvertKey(object)

Converts the key to a specific type

protected override TKey ConvertKey(object key)

Parameters

key object

Key to convert

Returns

TKey

Exceptions

InvalidOperationException

Thrown when unsupported type is used.

TryGetInternal(TKey, out BaseInfo)

Returns true if the internal dictionary contains specified record.

protected override bool TryGetInternal(TKey key, out BaseInfo value)

Parameters

key TKey

Key to check

value BaseInfo

Returns the object value if the object is present

Returns

bool