Tests whether the array contains a value.
Namespace:
MongoDB.Bson
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
Syntax public virtual bool Contains(
BsonValue value
)
Public Overridable Function Contains (
value As BsonValue
) As Boolean
abstract Contains :
value : BsonValue -> bool
override Contains :
value : BsonValue -> bool
Parameters
- value
- Type: MongoDB.BsonBsonValue
The value to test for.
Return Value
Type:
BooleanTrue if the array contains the value.
Implements
ICollectionTContains(T)See Also