Class GeoHaystackSearchResult.GeoHaystackSearchHits
Represents a collection of GeoHaystackSearch hits.
public abstract class GeoHaystackSearchResult.GeoHaystackSearchHits : IEnumerable
- Inheritance
-
GeoHaystackSearchResult.GeoHaystackSearchHits
- Implements
- Derived
- Inherited Members
- Extension Methods
Constructors
GeoHaystackSearchHits()
Initializes a new instance of the GeoHaystackSearchHits class.
protected GeoHaystackSearchHits()
Properties
Count
Gets the count of the number of hits.
public abstract int Count { get; }
Property Value
this[int]
Gets an individual hit.
public GeoHaystackSearchResult.GeoHaystackSearchHit this[int index] { get; }
Parameters
index
intThe zero based index of the hit.
Property Value
Methods
GetEnumerator()
Gets an enumerator for the hits.
public IEnumerator<GeoHaystackSearchResult.GeoHaystackSearchHit> GetEnumerator()
Returns
- IEnumerator<GeoHaystackSearchResult.GeoHaystackSearchHit>
An enumerator.
GetEnumeratorImplementation()
Gets the enumerator.
protected abstract IEnumerator<GeoHaystackSearchResult.GeoHaystackSearchHit> GetEnumeratorImplementation()
Returns
- IEnumerator<GeoHaystackSearchResult.GeoHaystackSearchHit>
An enumerator.
GetHitImplementation(int)
Gets an individual hit.
protected abstract GeoHaystackSearchResult.GeoHaystackSearchHit GetHitImplementation(int index)
Parameters
index
intThe zero based index of the hit.