Group
Show / Hide Table of Contents

Class Location

Represents a physical location on Earth (mostly used for addresses)

Inheritance
System.Object
Location
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Textkernel.Tx.Models
Assembly: Textkernel.Tx.SDK.dll
Syntax
public class Location

Properties

| Improve this Doc View Source

CountryCode

The 2-letter ISO 3166 country code

Declaration
public string CountryCode { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

GeoCoordinates

If geocoding has been done, this is the lat/lon for the location

Declaration
public GeocodedCoordinates GeoCoordinates { get; set; }
Property Value
Type Description
GeocodedCoordinates
| Improve this Doc View Source

Municipality

The City/Municipality/Town

Declaration
public string Municipality { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

PostalCode

The Postal or Zip code

Declaration
public string PostalCode { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Regions

The Regions/Districts/States

Declaration
public List<string> Regions { get; set; }
Property Value
Type Description
System.Collections.Generic.List<System.String>
| Improve this Doc View Source

StreetAddressLines

Street address lines

Declaration
public List<string> StreetAddressLines { get; set; }
Property Value
Type Description
System.Collections.Generic.List<System.String>
  • Improve this Doc
  • View Source
☀
☾
In This Article
Back to top
Generated by DocFX
☀
☾