MongoDBRefEquality Operator  | 
 
            Determines whether two specified MongoDBRef objects have the same value.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntaxpublic static bool operator ==(
	MongoDBRef lhs,
	MongoDBRef rhs
)
Public Shared Operator = ( 
	lhs As MongoDBRef,
	rhs As MongoDBRef
) As Boolean
static let inline (=)
        lhs : MongoDBRef * 
        rhs : MongoDBRef  : boolParameters
- lhs
 - Type: MongoDB.DriverMongoDBRef
The first value to compare, or null. - rhs
 - Type: MongoDB.DriverMongoDBRef
The second value to compare, or null. 
Return Value
Type: 
BooleanTrue if the value of lhs is the same as the value of rhs; otherwise, false.
See Also