Table of Contents

Class MongoIdentityEvidence

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Evidence used as proof of a MongoIdentity.

public abstract class MongoIdentityEvidence
Inheritance
MongoIdentityEvidence
Derived
Inherited Members

Methods

Equals(object)

Determines whether the specified object is equal to this instance.

public override abstract 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 abstract 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 ==(MongoIdentityEvidence, MongoIdentityEvidence)

Compares two MongoIdentityEvidences.

public static bool operator ==(MongoIdentityEvidence lhs, MongoIdentityEvidence rhs)

Parameters

lhs MongoIdentityEvidence

The first MongoIdentityEvidence.

rhs MongoIdentityEvidence

The other MongoIdentityEvidence.

Returns

bool

True if the two MongoIdentityEvidences are equal (or both null).

operator !=(MongoIdentityEvidence, MongoIdentityEvidence)

Compares two MongoIdentityEvidences.

public static bool operator !=(MongoIdentityEvidence lhs, MongoIdentityEvidence rhs)

Parameters

lhs MongoIdentityEvidence

The first MongoIdentityEvidence.

rhs MongoIdentityEvidence

The other MongoIdentityEvidence.

Returns

bool

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