Click or drag to resize
MvKeyValueTableValues Property
Returns the collection holding the values contained in this table.

Namespace: RW.Server.Component
Assembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax
public virtual ICollection<MvValue> Values { get; }

Property Value

Type: ICollectionMvValue
The collection holding the values contained in this table.
Remarks

The collection is backed by the table, so changes to the table are reflected in the collection, and vice-versa. If the table is modified while an iteration over the collection is in progress, the results of the iteration are undefined.

The collection supports element removal, which removes the corresponding mapping from the table, through the use of the Remove(T), and Clear.

It does not support the Add(T) operation.

See Also