Table of Contents

Class StringSafeDictionary<TValue>

Namespace
CMS.Base
Assembly
CMS.Base.dll

Safe dictionary indexed by string

public class StringSafeDictionary<TValue> : SafeDictionary<string, TValue>, ICloneThreadItem, IGeneralIndexable<string, TValue>, IGeneralIndexable

Type Parameters

TValue
Inheritance
object
Hashtable
SafeDictionary<string, TValue>
StringSafeDictionary<TValue>
Implements
IGeneralIndexable<string, TValue>
Derived
Inherited Members
Extension Methods

Constructors

StringSafeDictionary()

Default constructor, creates case insensitive dictionary

public StringSafeDictionary()

StringSafeDictionary(bool)

Constructor

public StringSafeDictionary(bool caseSensitive)

Parameters

caseSensitive bool

If true, the access to the dictionary is case sensitive

StringSafeDictionary(IDictionary, bool)

Constructor.

public StringSafeDictionary(IDictionary d, bool caseSensitive = false)

Parameters

d IDictionary

Source data dictionary

caseSensitive bool

If true, the access to the dictionary is case sensitive

StringSafeDictionary(IDictionary, IEqualityComparer)

Constructor.

public StringSafeDictionary(IDictionary d, IEqualityComparer comparer)

Parameters

d IDictionary

Source data dictionary

comparer IEqualityComparer

Equality comparer for items

Methods

Clone()

Clones the dictionary

public override object Clone()

Returns

object