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.

C#
Copy
public class PlaceAddress : IDisposable
Inheritance
System.Object
PlaceAddress
Implements
System.IDisposable

Constructors

View Source

PlaceAddress()

Constructs a map address object.

Declaration
C#
Copy
public PlaceAddress()
Exceptions
Type Condition
System.InvalidOperationException

Thrown when native operation failed to allocate memory.

API Level: 3

Properties

View Source

Building

Gets a building number for this address.

Declaration
C#
Copy
public string Building { get; set; }
Property Value
Type Description
System.String
API Level: 3
View Source

City

Gets a city name for this address.

Declaration
C#
Copy
public string City { get; set; }
Property Value
Type Description
System.String
API Level: 3
View Source

Country

Gets a country name for this address.

Declaration
C#
Copy
public string Country { get; set; }
Property Value
Type Description
System.String
API Level: 3
View Source

CountryCode

Gets a country code for this address.

Declaration
C#
Copy
public string CountryCode { get; set; }
Property Value
Type Description
System.String
API Level: 3
View Source

County

Gets a county for this address.

Declaration
C#
Copy
public string County { get; set; }
Property Value
Type Description
System.String
API Level: 3
View Source

District

Gets a district name for this address.

Declaration
C#
Copy
public string District { get; set; }
Property Value
Type Description
System.String
API Level: 3
View Source

FreeText

Gets a free text associated with this address.

Declaration
C#
Copy
public string FreeText { get; set; }
Property Value
Type Description
System.String
API Level: 4
View Source

PostalCode

Gets a postal code for this address.

Declaration
C#
Copy
public string PostalCode { get; set; }
Property Value
Type Description
System.String
API Level: 3
View Source

State

Gets a state name for this address.

Declaration
C#
Copy
public string State { get; set; }
Property Value
Type Description
System.String
API Level: 3
View Source

Street

Gets a street name for this address.

Declaration
C#
Copy
public string Street { get; set; }
Property Value
Type Description
System.String
API Level: 3

Methods

View Source

Dispose()

Releases all the resources used by this object.

Declaration
C#
Copy
public void Dispose()
API Level: 3
View Source

Dispose(Boolean)

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

Declaration
C#
Copy
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 Source

Finalize()

Destroy the PlaceAddress object.

Declaration
C#
Copy
protected void Finalize()
View Source

ToString()

Returns a string that represents this object.

Declaration
C#
Copy
public override string ToString()
Returns
Type Description
System.String

Returns a string which presents this object.

Overrides
System.Object.ToString()
API Level: 3

Implements

System.IDisposable