Class LocationBoundary

Definition

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

The LocationBoundary class is an abstract class that provides functions related to the geographic bounds information.

C#
Copy
public abstract class LocationBoundary : IDisposable
Inheritance
LocationBoundary
Derived
Implements
System.IDisposable

Properties

View Source

BoundaryType

Gets the location boundary type.

Declaration
C#
Copy
public BoundaryType BoundaryType { get; }
Property Value
Type Description
BoundaryType
API Level: 3

Methods

View Source

BoundaryContainsCoordinates(Coordinate)

Checks if the boundary contains the specified geographical coordinates.

Declaration
C#
Copy
public bool BoundaryContainsCoordinates(Coordinate coordinate)
Parameters
Type Name Description
Coordinate coordinate

The coordinate which needs to be checked.

Returns
Type Description
Boolean

Returns a boolean value indicating whether or not the specified coordinate lies in the geographical area.

API Level: 3
View Source

Dispose()

The overidden Dispose method of the IDisposable class.

Declaration
C#
Copy
public void Dispose()
Exceptions
Type Condition
System.ArgumentException

Thrown when an invalid argument is used.

System.NotSupportedException

Thrown when the location is not supported.

API Level: 3
View Source

Dispose(Boolean)

Dispose.

Declaration
C#
Copy
protected virtual void Dispose(bool disposing)
Parameters
Type Name Description
Boolean disposing
API Level: 3
View Source

Finalize()

The destructor of the LocationBoundary class.

Declaration
C#
Copy
protected void Finalize()
API Level: 3

Implements

System.IDisposable