MongoCredentialInequality Operator |
Compares two MongoCredentials.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax public 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 : bool
Parameters
- lhs
- Type: MongoDB.DriverMongoCredential
The first MongoCredential. - rhs
- Type: MongoDB.DriverMongoCredential
The other MongoCredential.
Return Value
Type:
BooleanTrue if the two MongoCredentials are not equal (or one is null and the other is not).
See Also