Class Address
Address for OSM requests.
Inheritance
System.Object
Address
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 Address
Constructors
Address()
Initializes a new instance of the Address class.
Declaration
public Address()
Address(Address)
Initializes a new instance of the Address class by copying values from an original.
Declaration
public Address(Address original)
Parameters
Type | Name | Description |
---|---|---|
Address | original | Original address. |
Properties
City
Gets or sets the city.
Declaration
public string City { get; set; }
Property Value
Type | Description |
---|---|
System. |
Country
Gets or sets the country.
Declaration
public string Country { get; set; }
Property Value
Type | Description |
---|---|
System. |
Postalcode
Gets or sets the postal code.
Declaration
public string Postalcode { get; set; }
Property Value
Type | Description |
---|---|
System. |
Street
Gets or sets the street (including numbers).
Declaration
public string Street { get; set; }
Property Value
Type | Description |
---|---|
System. |