Class LocationBoundary

Definition

Namespace:
Tizen.Location
Assembly:
Tizen.Location.dll

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

C#
Copy
public abstract class LocationBoundary : IDisposable
Inheritance
object
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

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
bool

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

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.

View Source

Dispose(bool)

Dispose.

Declaration
C#
Copy
protected virtual void Dispose(bool disposing)
Parameters
Type Name Description
bool disposing
View Source

~LocationBoundary()

The destructor of the LocationBoundary class.

Declaration
C#
Copy
protected ~LocationBoundary()

Implements

System.IDisposable