RawBsonArrayContains Method |
Tests whether the array contains a value.
Namespace:
MongoDB.Bson
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax public override bool Contains(
BsonValue value
)
Public Overrides 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