| MvKeyValueTableKeys Property |
Gets the collection holding the keys 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 ICollection<MvValue> Keys { get; }
Public ReadOnly Property Keys As ICollection(Of MvValue)
Get
public:
virtual property ICollection<MvValue^>^ Keys {
ICollection<MvValue^>^ get () sealed;
}
Property Value
Type:
ICollectionMvValue
The collection holding the keys of this table.
Implements
IDictionaryTKey, TValueKeysRemarks
The order of the keys is unspecified, but it is the same order
as the associated values Values property.
The returned collection is not a static copy; instead, the
collection refers back to the keys in the original
MvKeyValueTable.Therefore, changes to the
MvKeyValueTable continue to be reflected in the
keys collection.
Getting the value of this property is an O(1) operation.
See Also