| MvKeyValueTableValues Property |
Returns the collection holding the values contained in this
table.
Namespace: RW.Server.ComponentAssembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax public virtual ICollection<MvValue> Values { get; }
Public Overridable ReadOnly Property Values As ICollection(Of MvValue)
Get
public:
virtual property ICollection<MvValue^>^ Values {
ICollection<MvValue^>^ get ();
}
Property Value
Type:
ICollectionMvValueThe 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