Click or drag to resize
ThreadItemsDictionary Class

Note: This API is now obsolete.

Thread items dictionary.
Inheritance Hierarchy
System.Object
  System.Collections.Hashtable
    CMS.Base.SafeDictionary<String, Object>
      CMS.Base.ThreadItemsDictionary

Namespace: CMS.Base
Assembly: CMS.Base (in CMS.Base.dll) Version: 8.2.23
Syntax
C#
[ObsoleteAttribute("Class is no longer supported. Please remove it from your code.")]
public class ThreadItemsDictionary : SafeDictionary<string, Object>

The ThreadItemsDictionary type exposes the following members.

Constructors
  NameDescription
Public methodThreadItemsDictionary
Top
Methods
  NameDescription
Public methodAdd
Adds the value to the dictionary
(Inherited from SafeDictionary<TKey, TValue>.)
Public methodAddMultiple
Adds multiple items with same value to the dictionary
(Inherited from SafeDictionary<TKey, TValue>.)
Public methodClear
Removes all elements from the System.Collections.Hashtable.
(Inherited from SafeDictionary<TKey, TValue>.)
Public methodCloneForNewThread
Clones the object for new thread
(Inherited from SafeDictionary<TKey, TValue>.)
Public methodContains
Returns true if the dictionary contains the given key
(Inherited from SafeDictionary<TKey, TValue>.)
Public methodContainsKey
Returns true if the dictionary contains the given key
(Inherited from SafeDictionary<TKey, TValue>.)
Public methodContainsValue
Returns true if the dictionary contains the given value
(Inherited from SafeDictionary<TKey, TValue>.)
Public methodCopyTo
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>.)
Public methodGetObjectData
Object serialization.
(Inherited from SafeDictionary<TKey, TValue>.)
Public methodGetRealCount
Gets the real count of the objects in the dictionary
(Inherited from SafeDictionary<TKey, TValue>.)
Public methodRemove
Removes the element with the specified key from the System.Collections.Hashtable.
(Inherited from SafeDictionary<TKey, TValue>.)
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
Extension Methods
  NameDescription
Public Extension MethodAsValue
Converts object to a query value which can be used as a query parameter
(Defined by QueryExtensions.)
Public Extension MethodGetAPIString
Gets the string by the specified resource key
(Defined by CoreExtensions.)
Public Extension MethodGetString
Gets the string by the specified resource key
(Defined by CoreExtensions.)
Public Extension MethodToBoolean
Returns the boolean representation of an object or default value if not.
(Defined by CoreExtensions.)
Public Extension MethodToDateTime
Returns the DateTime representation of an object or default value if not.
(Defined by CoreExtensions.)
Public Extension MethodToDouble
Returns the double representation of an object or default value if not.
(Defined by CoreExtensions.)
Public Extension MethodToGuid
Returns the Guid representation of an object or default value if not.
(Defined by CoreExtensions.)
Public Extension MethodToInteger
Returns the integer representation of an object or default value if not.
(Defined by CoreExtensions.)
Public Extension MethodToString
Returns the string representation of an object or default value if not.
(Defined by CoreExtensions.)
Top
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 propertyIsEmpty
Returns true if the dictionary is empty
(Inherited from SafeDictionary<TKey, TValue>.)
Public propertyIsSynchronized
Returns true if dictionary is synchronized.
(Inherited from SafeDictionary<TKey, TValue>.)
Public propertyItem
Items indexer. Gets or sets the value in the dictionary.
(Inherited from SafeDictionary<TKey, TValue>.)
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 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 propertyUseWeakReferences
If true, the weak references are used for the items so the memory can be cleared upon request
(Inherited from SafeDictionary<TKey, TValue>.)
Public propertyValues
Gets an Collection containing the values in the System.Collections.Hashtable.
(Inherited from SafeDictionary<TKey, TValue>.)
Top
See Also