Class FallbackMatch
Represents the result of a location lookup including fallback details.
Inheritance
System.Object
FallbackMatch
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TimeCockpit.Data.Geolocation.OSM
Assembly: TimeCockpit.Data.dll
Syntax
public class FallbackMatch
Constructors
FallbackMatch(Location, Address, Address)
Initializes a new instance of the FallbackMatch class.
Declaration
public FallbackMatch(Location location, Address matchedAddress, Address actualAddress)
Parameters
Type | Name | Description |
---|---|---|
Location | location | Matched location. |
Address | matchedAddress | Matched address. |
Address | actualAddress | Original/actual address. |
Properties
ActualAddress
Gets the actual address.
Declaration
public Address ActualAddress { get; }
Property Value
Type | Description |
---|---|
Address |
IsExactMatch
Gets a value indicating whether the address could be exactly matched.
Declaration
public bool IsExactMatch { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsMatch
Gets a value indicating whether the address could be matched at all.
Declaration
public bool IsMatch { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Location
Gets the matched location.
Declaration
public Location Location { get; }
Property Value
Type | Description |
---|---|
Location |
MatchedAddress
Gets the matched address.
Declaration
public Address MatchedAddress { get; }
Property Value
Type | Description |
---|---|
Address |