Click or drag to resize
MultiKeyDictionary<ValueType> Class
Hashtable which can use multiple keys to access the same data. The keys are separated by the separator.
Inheritance Hierarchy
System.Object
  System.Collections.Hashtable
    CMS.Base.SafeDictionary<String, ValueType>
      CMS.Base.StringSafeDictionary<ValueType>
        CMS.Base.MultiKeyDictionary<ValueType>

Namespace: CMS.Base
Assembly: CMS.Base (in CMS.Base.dll) Version: 13.0.131
Syntax
C#
public class MultiKeyDictionary<ValueType> : StringSafeDictionary<ValueType>

Type Parameters

ValueType

The MultiKeyDictionary< ValueType> type exposes the following members.

Constructors
Fields
Properties
  NameDescription
Public propertyAllowNulls
If true, the dictionary allows null values as valid.
(Inherited from SafeDictionary<TKey, TValue>.)
Public propertyCopyToNewThread
If true, the dictionary is copied (not cloned) to a new thread
(Inherited from SafeDictionary<TKey, TValue>.)
Public propertyDefaultValue
Default value.
(Inherited from SafeDictionary<TKey, TValue>.)
Public propertyIsSynchronized
Returns true if dictionary is synchronized.
(Inherited from SafeDictionary<TKey, TValue>.)
Public propertyItem[Object]
Gets or sets the value associated with key value
(Overrides SafeDictionary<TKey, TValue>.Item[Object].)
Public propertyItem[String]
Gets or sets the item.
(Overrides SafeDictionary<TKey, TValue>.Item[TKey].)
Public propertyKeys
Gets an Collection containing the keys in the System.Collections.Hashtable.
(Inherited from SafeDictionary<TKey, TValue>.)
Public propertyNullValue
Null value.
(Inherited from SafeDictionary<TKey, TValue>.)
Public propertyCode exampleSyncRoot (Inherited from SafeDictionary<TKey, TValue>.)
Public propertyTypedKeys
Gets a typed collection of keys in this dictionary
(Inherited from SafeDictionary<TKey, TValue>.)
Public propertyTypedValues
Gets a typed collection of values in this dictionary
(Inherited from SafeDictionary<TKey, TValue>.)
Public propertyCode exampleUseWeakReferences
If true, the weak references are used for the items so the memory can be cleared upon request. The property can be set only when the dictionary is empty. To ensure thread-safety, you have to perform the check for emptiness and property assignment in a critical section (use SyncRoot for that purpose).
(Inherited from SafeDictionary<TKey, TValue>.)
Public propertyValues
Gets a Collection containing the values in the System.Collections.Hashtable.
(Inherited from SafeDictionary<TKey, TValue>.)
Top
Methods
  NameDescription
Public methodAdd
Adds the value to the table.
(Overrides SafeDictionary<TKey, TValue>.Add(Object, Object).)
Public methodCode exampleAddMultiple
Adds multiple items with same value to the dictionary
(Inherited from SafeDictionary<TKey, TValue>.)
Public methodClear
Clears the table.
(Overrides SafeDictionary<TKey, TValue>.Clear().)
Public methodClone
Gets the cloned Hashtable.
(Overrides StringSafeDictionary<TValue>.Clone().)
Public methodCloneForNewThread
Clones the object for new thread
(Inherited from SafeDictionary<TKey, TValue>.)
Public methodContains
Returns true if the table contains specific key.
(Overrides SafeDictionary<TKey, TValue>.Contains(Object).)
Public methodContainsKey
Returns true if the table contains specific key.
(Overrides SafeDictionary<TKey, TValue>.ContainsKey(Object).)
Public methodContainsValue
Returns true if the dictionary contains the given value
(Inherited from SafeDictionary<TKey, TValue>.)
Protected methodCopyPropertiesTo
Copies the dictionary properties to the target dictionary
(Inherited from SafeDictionary<TKey, TValue>.)
Public methodCode exampleCopyTo
Copies the System.Collections.Hashtable elements to a one-dimensional System.Array instance at the specified index.
(Inherited from SafeDictionary<TKey, TValue>.)
Protected methodGetInternalValue
Gets the value from the internal dictionary
(Inherited from SafeDictionary<TKey, TValue>.)
Protected methodGetMainKey
Gets the main object key for the given key.
Public methodGetObjectData
Object serialization.
(Inherited from SafeDictionary<TKey, TValue>.)
Public methodCode exampleGetRealCount
Gets the real count of the objects in the dictionary.
(Inherited from SafeDictionary<TKey, TValue>.)
Public methodRemove
Removes the item from the table.
(Overrides SafeDictionary<TKey, TValue>.Remove(Object).)
Protected methodSetInternalValue
Sets the value in the internal dictionary
(Inherited from SafeDictionary<TKey, TValue>.)
Public methodTryGetValue
Tries to get the value, returns true if the retrieval was successful.
(Inherited from SafeDictionary<TKey, TValue>.)
Top
Remarks
This API supports the framework infrastructure and is not intended to be used directly from your code.
See Also