C# Class MongoDB.Driver.GeoNearResult.GeoNearHits

Represents a collection of GeoNear hits.
Inheritance: IEnumerable
Datei anzeigen Open project: CloudMetal/mongo-csharp-driver

Public Methods

Method Description
GetEnumerator ( ) : IEnumerator

Gets an enumerator for the hits.

this ( int index ) : GeoNearHit

Gets an individual hit.

Protected Methods

Method 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

Method Description
IEnumerable ( ) : IEnumerator

Method Details

GeoNearHits() protected method

Initializes a new instance of the GeoNearHits class.
protected GeoNearHits ( ) : System
return System

GetEnumerator() public method

Gets an enumerator for the hits.
public GetEnumerator ( ) : IEnumerator
return IEnumerator

GetEnumeratorImplementation() protected abstract method

Gets the enumerator.
protected abstract GetEnumeratorImplementation ( ) : IEnumerator
return IEnumerator

GetHitImplementation() protected abstract method

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

this() public method

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