Table of Contents

Class MongoIdentity

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

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

string

Username

Gets the username.

public string Username { get; }

Property Value

string

Methods

Equals(MongoIdentity)

Determines whether the specified instance is equal to this instance.

public bool Equals(MongoIdentity rhs)

Parameters

rhs MongoIdentity

The 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

obj object

The object to compare with this instance.

Returns

bool

true if the specified object is equal to this instance; otherwise, false.

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 MongoIdentity

The first MongoIdentity.

rhs MongoIdentity

The 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 MongoIdentity

The first MongoIdentity.

rhs MongoIdentity

The other MongoIdentity.

Returns

bool

True if the two MongoIdentity values are not equal (or one is null and the other is not).