C# Class MongoDB.Driver.GeoNearResult.GeoNearHits

Represents a collection of GeoNear hits.
Inheritance: IEnumerable
Afficher le fichier Open project: CloudMetal/mongo-csharp-driver

Méthodes publiques

Méthode Description
GetEnumerator ( ) : IEnumerator

Gets an enumerator for the hits.

this ( int index ) : GeoNearHit

Gets an individual hit.

Méthodes protégées

Méthode Description
GeoNearHits ( ) : System

Initializes a new instance of the GeoNearHits class.

GetEnumeratorImplementation ( ) : IEnumerator

Gets the enumerator.

GetHitImplementation ( int index ) : GeoNearHit

Gets an individual hit.

Private Methods

Méthode Description
IEnumerable ( ) : IEnumerator

Method Details

GeoNearHits() protected méthode

Initializes a new instance of the GeoNearHits class.
protected GeoNearHits ( ) : System
Résultat System

GetEnumerator() public méthode

Gets an enumerator for the hits.
public GetEnumerator ( ) : IEnumerator
Résultat IEnumerator

GetEnumeratorImplementation() protected abstract méthode

Gets the enumerator.
protected abstract GetEnumeratorImplementation ( ) : IEnumerator
Résultat IEnumerator

GetHitImplementation() protected abstract méthode

Gets an individual hit.
protected abstract GetHitImplementation ( int index ) : GeoNearHit
index int The zero based index of the hit.
Résultat GeoNearHit

this() public méthode

Gets an individual hit.
public this ( int index ) : GeoNearHit
index int The zero based index of the hit.
Résultat GeoNearHit