Click or drag to resize
MvKeyValueTableItem Property
Gets or sets the value associated with the specified key.

Namespace: RW.Server.Component
Assembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax
public MvValue this[
	MvValue key
] { get; set; }

Parameters

key
Type: RW.Server.ComponentMvValue
The key of the value to get or set.

Property Value

Type: MvValue
The value associated with the specified key. If the specified key is not found, a get operation throws a KeyNotFoundException, and a set operation creates new element with the specified key.

Implements

IDictionaryTKey, TValueItemTKey
Exceptions
ExceptionCondition
ArgumentNullExceptionIf key is

Property Value

Type: MvValue
null.
KeyNotFoundExceptionIf key does not exist in the map.
See Also