Struct SortableField
Represents a field used to sort results
public struct SortableField
- Inherited Members
Constructors
SortableField(string)
Constructor
public SortableField(string fieldName)
Parameters
fieldName
stringThe field name to sort by
SortableField(string, IExamineSpatialPoint)
Constructor
public SortableField(string fieldName, IExamineSpatialPoint spatialPoint)
Parameters
fieldName
stringThe field name to sort by
spatialPoint
IExamineSpatialPointThe point to calculate distance from
SortableField(string, SortType)
Constructor
public SortableField(string fieldName, SortType sortType)
Parameters
fieldName
stringThe field name to sort by
sortType
SortTypeThe way in which the results will be sorted by the field specified.
Properties
FieldName
The field name to sort by
public readonly string FieldName { get; }
Property Value
SortType
The way in which the results will be sorted by the field specified.
public readonly SortType SortType { get; }
Property Value
SpatialPoint
The point to calculate distance from
public readonly IExamineSpatialPoint SpatialPoint { get; }