Class SatelliteStatusChangedEventArgs

Definition

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

An extended EventArgs class which contains the changed satellite status.

C#
Copy
public class SatelliteStatusChangedEventArgs : EventArgs
Inheritance
SatelliteStatusChangedEventArgs

Constructors

View Source

SatelliteStatusChangedEventArgs(UInt32, UInt32, DateTime)

The class constructor for the SatelliteStatusChangedEventArgs class.

Declaration
C#
Copy
public SatelliteStatusChangedEventArgs(uint activeCount, uint inviewCount, DateTime timestamp)
Parameters
Type Name Description
System.UInt32 activeCount

The number of active satellites.

System.UInt32 inviewCount

The number of satellites in view.

System.DateTime timestamp

The time at which the data has been extracted.

API Level: 3

Properties

View Source

ActiveCount

Gets the number of active satellites.

Declaration
C#
Copy
public uint ActiveCount { get; }
Property Value
Type Description
System.UInt32
API Level: 3
View Source

InViewCount

Gets the number of satellites in view.

Declaration
C#
Copy
public uint InViewCount { get; }
Property Value
Type Description
System.UInt32
API Level: 3
View Source

Timestamp

Get the timestamp.

Declaration
C#
Copy
public DateTime Timestamp { get; }
Property Value
Type Description
System.DateTime
API Level: 3