Class MongoIdentity
Represents an identity in MongoDB.
public abstract class MongoIdentity : IEquatable<MongoIdentity>
- Inheritance
-
MongoIdentity
- Implements
- Derived
- Inherited Members
Properties
Source
Gets the source.
public string Source { get; }
Property Value
Username
Gets the username.
public string Username { get; }
Property Value
Methods
Equals(MongoIdentity)
Determines whether the specified instance is equal to this instance.
public bool Equals(MongoIdentity rhs)
Parameters
rhs
MongoIdentityThe right-hand side.
Returns
- bool
true
if the specified instance is equal to this instance; otherwise,false
.
Equals(object)
Determines whether the specified object is equal to this instance.
public override bool Equals(object obj)
Parameters
Returns
GetHashCode()
Returns a hash code for this instance.
public override int GetHashCode()
Returns
- int
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
Operators
operator ==(MongoIdentity, MongoIdentity)
Compares two MongoIdentity values.
public static bool operator ==(MongoIdentity lhs, MongoIdentity rhs)
Parameters
lhs
MongoIdentityThe first MongoIdentity.
rhs
MongoIdentityThe other MongoIdentity.
Returns
- bool
True if the two MongoIdentity values are equal (or both null).
operator !=(MongoIdentity, MongoIdentity)
Compares two MongoIdentity values.
public static bool operator !=(MongoIdentity lhs, MongoIdentity rhs)
Parameters
lhs
MongoIdentityThe first MongoIdentity.
rhs
MongoIdentityThe other MongoIdentity.
Returns
- bool
True if the two MongoIdentity values are not equal (or one is null and the other is not).