Table of Contents

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

double?

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

RedisValue

Position

The coordinates of the matched member.

public GeoPosition? Position { get; }

Property Value

GeoPosition?

Methods

ToString()

Indicate the member being represented

public override string ToString()

Returns

string