Class PlaceFilter

Definition

Namespace:
Tizen.Maps
Assembly:
Tizen.Maps.dll

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

C#
Copy
[Obsolete("Deprecated since API11. Might be removed in API13.")] public class PlaceFilter : IDisposable
Inheritance
object
PlaceFilter
Implements
System.IDisposable

Constructors

View Source

PlaceFilter()

Constructs a new place filter.

Declaration
C#
Copy
[Obsolete("Deprecated since API11. Might be removed in API13.")] public PlaceFilter()
Exceptions
Type Condition
System.InvalidOperationException

Thrown when native operation failed to allocate memory.

Properties

View Source

Address

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

Declaration
C#
Copy
[Obsolete("Deprecated since API11. Might be removed in API13.")] public string Address { get; set; }
Property Value
Type Description
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.

View Source

Category

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

Declaration
C#
Copy
[Obsolete("Deprecated since API11. Might be removed in API13.")] public PlaceCategory Category { get; set; }
Property Value
Type Description
PlaceCategory
View Source

Keyword

Gets or sets a keyword for this place filter.

Declaration
C#
Copy
[Obsolete("Deprecated since API11. Might be removed in API13.")] public string Keyword { get; set; }
Property Value
Type Description
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.

View Source

Name

Gets or sets a name for this place filter.

Declaration
C#
Copy
[Obsolete("Deprecated since API11. Might be removed in API13.")] public string Name { get; set; }
Property Value
Type Description
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.

Methods

View Source

Dispose()

Releases all the resources used by this object.

Declaration
C#
Copy
[Obsolete("Deprecated since API11. Might be removed in API13.")] public void Dispose()
View Source

Dispose(bool)

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

Declaration
C#
Copy
[Obsolete("Deprecated since API11. Might be removed in API13.")] protected virtual void Dispose(bool disposing)
Parameters
Type Name Description
bool disposing

If true, managed and unmanaged resources can be disposed, otherwise only unmanaged resources can be disposed.

View Source

~PlaceFilter()

Destroy the PlaceFilter object.

Declaration
C#
Copy
protected ~PlaceFilter()

Implements

System.IDisposable