C# Class MongoDB.Driver.GeoHaystackSearchResult.GeoHaystackSearchHits

Represents a collection of GeoHaystackSearch hits.
Inheritance: IEnumerable
Mostrar archivo Open project: CloudMetal/mongo-csharp-driver

Public Methods

Method Description
GetEnumerator ( ) : IEnumerator

Gets an enumerator for the hits.

this ( int index ) : GeoHaystackSearchHit

Gets an individual hit.

Protected Methods

Method Description
GeoHaystackSearchHits ( ) : System

Initializes a new instance of the GeoHaystackSearchHits class.

GetEnumeratorImplementation ( ) : IEnumerator

Gets the enumerator.

GetHitImplementation ( int index ) : GeoHaystackSearchHit

Gets an individual hit.

Private Methods

Method Description
IEnumerable ( ) : IEnumerator

Method Details

GeoHaystackSearchHits() protected method

Initializes a new instance of the GeoHaystackSearchHits class.
protected GeoHaystackSearchHits ( ) : 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 ) : GeoHaystackSearchHit
index int The zero based index of the hit.
return GeoHaystackSearchHit

this() public method

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