Class PlaceFilter

Definition

Namespace:
Tizen.Maps
Assembly:
Tizen.Maps.dll
API Level:
3

Place filter information, used in place discovery and search requests.

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

Constructors

View Source

PlaceFilter()

Constructs a new place filter.

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

Thrown when native operation failed to allocate memory.

API Level: 3

Properties

View Source

Address

Gets or sets a free-formed address string for this place filter.

Declaration
C#
Copy
public string Address { get; set; }
Property Value
Type Description
System.String
Remarks

Depending on maps provider which the application has selected, it may treat Name, Keyword and Address as the same kind of strings to search places.

API Level: 3
View Source

Category

Gets or sets an instance of PlaceCategory object for this place filter.

Declaration
C#
Copy
public PlaceCategory Category { get; set; }
Property Value
Type Description
PlaceCategory
API Level: 3
View Source

Keyword

Gets or sets a keyword for this place filter.

Declaration
C#
Copy
public string Keyword { get; set; }
Property Value
Type Description
System.String
Remarks

Depending on maps provider which the application has selected, it may treat Name, Keyword and Address as the same kind of strings to search places.

API Level: 3
View Source

Name

Gets or sets a name for this place filter.

Declaration
C#
Copy
public string Name { get; set; }
Property Value
Type Description
System.String
Remarks

Depending on maps provider which the application has selected, it may treat Name, Keyword and Address as the same kind of strings to search places.

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 PlaceFilter object.

Declaration
C#
Copy
protected void Finalize()

Implements

System.IDisposable