IDictionary Interface

Represents type IDictionary.

Namespace: Spring.Collections
type
 IDictionary = interface(ICollection)
 ['{9AC642EE-F236-421D-8546-DCA0D8D53791}']
 end;

The IDictionary type exposes the following members.

Show:
 NameDescription
Count

Returns the number of elements in a sequence. (Inherited from IEnumerable.)

ElementType

Returns the type of the elements in the sequence. (Inherited from IEnumerable.)

IsEmpty

Determines whether the sequence contains no elements. (Inherited from IEnumerable.)

IsReadOnly

Represents property IsReadOnly. (Inherited from ICollection.)

KeyType

Represents property KeyType.

OnChanged

Represents property OnChanged. (Inherited from ICollection.)

OnKeyChanged

Represents property OnKeyChanged.

OnValueChanged

Represents property OnValueChanged.

ValueType

Represents property ValueType.

Top
Show:
 NameDescription
Add(TValue,TValue)

Represents method Add(TValue,TValue).

AddOrSetValue(TValue,TValue)

Represents method AddOrSetValue(TValue,TValue).

AddRange(IEnumerable)

Overloaded. Represents method AddRange(IEnumerable). (Inherited from ICollection.)

AddRange(TValue[])

Overloaded. Represents method AddRange(TValue[]). (Inherited from ICollection.)

AsObject

Returns the reference to this instance. (Inherited from IEnumerable.)

AsReadOnlyDictionary

Represents method AsReadOnlyDictionary.

Clear

Represents method Clear. (Inherited from ICollection.)

ContainsKey(TValue)

Represents method ContainsKey(TValue).

ContainsValue(TValue)

Represents method ContainsValue(TValue).

Extract(TValue)

Represents method Extract(TValue). (Inherited from ICollection.)

ExtractPair(TValue)

Represents method ExtractPair(TValue).

ExtractRange(IEnumerable)

Overloaded. Represents method ExtractRange(IEnumerable). (Inherited from ICollection.)

ExtractRange(TValue[])

Overloaded. Represents method ExtractRange(TValue[]). (Inherited from ICollection.)

GetCount

Represents method GetCount. (Inherited from IEnumerable.)

GetElementType

Represents method GetElementType. (Inherited from IEnumerable.)

GetEnumerator

Returns an enumerator that iterates through a collection. (Inherited from IEnumerable.)

GetIsEmpty

Represents method GetIsEmpty. (Inherited from IEnumerable.)

GetIsReadOnly

Represents method GetIsReadOnly. (Inherited from ICollection.)

GetKeyType

Represents method GetKeyType.

GetOnChanged

Represents method GetOnChanged. (Inherited from ICollection.)

GetOnKeyChanged

Represents method GetOnKeyChanged.

GetOnValueChanged

Represents method GetOnValueChanged.

GetValueType

Represents method GetValueType.

Remove(TValue)

Overloaded. Represents method Remove(TValue).

RemoveRange(IEnumerable)

Overloaded. Represents method RemoveRange(IEnumerable). (Inherited from ICollection.)

RemoveRange(TValue[])

Overloaded. Represents method RemoveRange(TValue[]). (Inherited from ICollection.)

TryGetValue(TValue,TValue)

Represents method TryGetValue(TValue,TValue).

Top