| MvKeyValueTableItem Property |
Gets or sets the value associated with the specified key.
Namespace: RW.Server.ComponentAssembly: 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; }
Public Default Property Item (
key As MvValue
) As MvValue
Get
Set
public:
virtual property MvValue^ default[MvValue^ key] {
MvValue^ get (MvValue^ key) sealed;
void set (MvValue^ key, MvValue^ value) sealed;
}
Parameters
- key
- Type: RW.Server.ComponentMvValue
The key of the value to get or set.
Property Value
Type:
MvValueThe 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, TValueItemTKeyExceptions See Also