Click or drag to resize

AtalaObservableDictionary<TKey, TValue>.Item Property

Gets or sets the element with the specified key.

Namespace:  Atalasoft.Imaging.Wpf
Assembly:  Atalasoft.dotImage.Wpf (in Atalasoft.dotImage.Wpf.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public TValue this[
	TKey key
] { get; set; }

Parameters

key
Type: TKey
The key of the element to get or set.

Return Value

Type: TValue
The element with the specified key.

Implements

IDictionary<TKey, TValue>.Item[TKey]
Exceptions
ExceptionCondition
ArgumentNullExceptionkey is null.
KeyNotFoundExceptionThe property is retrieved and key is not found.
NotSupportedExceptionThe property is set and the IDictionary<TKey, TValue> is read-only.
See Also