Class PlaceAddress
Definition
- Namespace:
- Tizen.Maps
- Assembly:
- Tizen.Maps.dll
- API Level:
- 3
Address information for the map point used in geocode and reverse geocode requests.
public class PlaceAddress : IDisposable
- Inheritance
-
PlaceAddress
- Implements
Constructors
View SourcePlaceAddress()
Constructs a map address object.
Declaration
public PlaceAddress()
Exceptions
Type | Condition |
---|---|
InvalidOperationException | Thrown when native operation failed to allocate memory. |
API Level: 3
Properties
View SourceBuilding
Gets a building number for this address.
Declaration
public string Building { get; set; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
View SourceCity
Gets a city name for this address.
Declaration
public string City { get; set; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
View SourceCountry
Gets a country name for this address.
Declaration
public string Country { get; set; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
View SourceCountryCode
Gets a country code for this address.
Declaration
public string CountryCode { get; set; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
View SourceCounty
Gets a county for this address.
Declaration
public string County { get; set; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
View SourceDistrict
Gets a district name for this address.
Declaration
public string District { get; set; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
View SourceFreeText
Gets a free text associated with this address.
Declaration
public string FreeText { get; set; }
Property Value
Type | Description |
---|---|
String |
API Level: 4
View SourcePostalCode
Gets a postal code for this address.
Declaration
public string PostalCode { get; set; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
View SourceState
Gets a state name for this address.
Declaration
public string State { get; set; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
View SourceStreet
Gets a street name for this address.
Declaration
public string Street { get; set; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
Methods
View SourceDispose()
Releases all the resources used by this object.
Declaration
public void Dispose()
API Level: 3
View SourceDispose(Boolean)
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Declaration
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
Boolean | disposing | If true, managed and unmanaged resources can be disposed, otherwise only unmanaged resources can be disposed. |
API Level: 3
View SourceFinalize()
Destroy the PlaceAddress object.
Declaration
protected void Finalize()
ToString()
Returns a string that represents this object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | Returns a string which presents this object. |