Class
HashtableDictionary

An object-object dictionary which returns null in case a key is not found (the normal dictionary does throw an exception in this case).

Definition

Namespace:Telerik.Windows.Diagrams.Core

Assembly:Telerik.Windows.Diagrams.Core.dll

Syntax:

cs-api-definition
public class HashtableDictionary : Dictionary<object, object>, IDictionary<object, object>, ICollection<KeyValuePair<object, object>>, IDictionary, ICollection, IReadOnlyDictionary<object, object>, IReadOnlyCollection<KeyValuePair<object, object>>, IEnumerable<KeyValuePair<object, object>>, IEnumerable, ISerializable, IDeserializationCallback

Inheritance: objectDictionary<object, object>HashtableDictionary

Implements: ICollectionICollection<KeyValuePair<object, object>>IDeserializationCallbackIDictionaryIDictionary<object, object>IEnumerableIEnumerable<KeyValuePair<object, object>>IReadOnlyCollection<KeyValuePair<object, object>>IReadOnlyDictionary<object, object>ISerializable

Inherited Members Dictionary<object, object>.Add(object, object)Dictionary<object, object>.Clear()Dictionary<object, object>.ContainsKey(object)Dictionary<object, object>.ContainsValue(object)Dictionary<object, object>.GetEnumerator()Dictionary<object, object>.OnDeserialization(object)Dictionary<object, object>.Remove(object)Dictionary<object, object>.Remove(object, out object)Dictionary<object, object>.TryGetValue(object, out object)Dictionary<object, object>.TryAdd(object, object)Dictionary<object, object>.EnsureCapacity(int)Dictionary<object, object>.TrimExcess()Dictionary<object, object>.TrimExcess(int)Dictionary<object, object>.ComparerDictionary<object, object>.CountDictionary<object, object>.KeysDictionary<object, object>.ValuesDictionary<object, object>.this[object]

Constructors

HashtableDictionary()

Initializes a new instance of the HashtableDictionary class.

Declaration

cs-api-definition
public HashtableDictionary()

Properties

this[object]

Gets or sets the object with the specified key.

Declaration

cs-api-definition
public object this[object key] { get; set; }

Parameters

key

object

Property Value

object