Struct GeoRadiusResult
- Namespace
- StackExchange.Redis
- Assembly
- StackExchange.Redis.StrongName.dll
The result of a GeoRadius command.
public struct GeoRadiusResult
- Inherited Members
Properties
Distance
The distance of the matched member from the center of the geo radius command.
public double? Distance { get; }
Property Value
Hash
The hash value of the matched member as an integer. (The key in the sorted set)
public long? Hash { get; }
Property Value
- long?
Remarks
Note that this is not the same as the hash returned from GeoHash
Member
The matched member.
public RedisValue Member { get; }
Property Value
Position
The coordinates of the matched member.
public GeoPosition? Position { get; }
Property Value
Methods
ToString()
Indicate the member being represented
public override string ToString()