Class PlaceFilter
Definition
- Assembly:
- Tizen.Maps.dll
Place filter information, used in place discovery and search requests.
public class PlaceFilter : IDisposable
- Inheritance
-
objectPlaceFilter
- Implements
-
System.IDisposable
Constructors
View SourcePlaceFilter()
Constructs a new place filter.
Declaration
public PlaceFilter()
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | Thrown when native operation failed to allocate memory. |
Properties
View SourceAddress
Gets or sets a free-formed address string for this place filter.
Declaration
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.
Category
Gets or sets an instance of PlaceCategory object for this place filter.
Declaration
public PlaceCategory Category { get; set; }
Property Value
Type | Description |
---|---|
PlaceCategory |
Keyword
Gets or sets a keyword for this place filter.
Declaration
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.
Name
Gets or sets a name for this place filter.
Declaration
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 SourceDispose()
Releases all the resources used by this object.
Declaration
public void Dispose()
Dispose(bool)
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Declaration
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. |
~PlaceFilter()
Destroy the PlaceFilter object.
Declaration
protected ~PlaceFilter()