| MvKeyValueTableContainsValue Method |
Gets a value indicating if this table maps one or more keys to
the specified value.
Namespace: RW.Server.ComponentAssembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax public virtual bool ContainsValue(
MvValue value
)
Public Overridable Function ContainsValue (
value As MvValue
) As Boolean
public:
virtual bool ContainsValue(
MvValue^ value
)
Parameters
- value
- Type: RW.Server.ComponentMvValue
The value to be tested.
Return Value
Type:
Booleantrue if this table maps one or more keys to the
value.
Remarks
This method returns true if and only if this table
contains at least one mapping to a value v such
that Equals(v, value) == true.
This operation requires a time that is proportional to the size
of the table.
See Also