| RawBsonDocumentContainsValue Method  | 
 
            Tests whether the document contains an element with the specified value.
            
 
    Namespace: 
   MongoDB.Bson
    Assembly:
   MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
 Syntax
Syntaxpublic override bool ContainsValue(
	BsonValue value
)
Public Overrides Function ContainsValue ( 
	value As BsonValue
) As Boolean
abstract ContainsValue : 
        value : BsonValue -> bool 
override ContainsValue : 
        value : BsonValue -> bool Parameters
- value
- Type: MongoDB.BsonBsonValue
 The value of the element to look for.
Return Value
Type: 
Boolean
            True if the document contains an element with the specified value.
            
 See Also
See Also