| MongoCredentialEquality Operator  | 
 
            Compares two MongoCredentials.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
 Syntax
Syntaxpublic static bool operator ==(
	MongoCredential lhs,
	MongoCredential rhs
)
Public Shared Operator = ( 
	lhs As MongoCredential,
	rhs As MongoCredential
) As Boolean
static let inline (=)
        lhs : MongoCredential * 
        rhs : MongoCredential  : boolParameters
- lhs
- Type: MongoDB.DriverMongoCredential
 The first MongoCredential.
- rhs
- Type: MongoDB.DriverMongoCredential
 The other MongoCredential.
Return Value
Type: 
BooleanTrue if the two MongoCredentials are equal (or both null).
 See Also
See Also