GeoCoordinateWatcher.Status Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the current status of the GeoCoordinateWatcher.
public:
property System::Device::Location::GeoPositionStatus Status { System::Device::Location::GeoPositionStatus get(); };
public System.Device.Location.GeoPositionStatus Status { get; }
member this.Status : System.Device.Location.GeoPositionStatus
Public ReadOnly Property Status As GeoPositionStatus
Property Value
A GeoPositionStatus which indicates the availability of data from the GeoCoordinateWatcher.
Implements
Examples
The following example handles StatusChanged events and prints a message based on the Status.
using System;
using System.Device.Location;
namespace ShowStatusUpdates
{
class Program
{
static void Main(string[] args)
{
ShowStatusUpdates();
}
static void ShowStatusUpdates()
{
GeoCoordinateWatcher watcher = new GeoCoordinateWatcher();
watcher.Start();
watcher.StatusChanged += new EventHandler<GeoPositionStatusChangedEventArgs>(watcher_StatusChanged);
Console.WriteLine("Enter any key to quit.");
Console.ReadLine();
}
static void watcher_StatusChanged(object sender, GeoPositionStatusChangedEventArgs e)
{
switch (e.Status)
{
case GeoPositionStatus.Initializing:
Console.WriteLine("Working on location fix");
break;
case GeoPositionStatus.Ready:
Console.WriteLine("Have location");
break;
case GeoPositionStatus.NoData:
Console.WriteLine("No data");
break;
case GeoPositionStatus.Disabled:
Console.WriteLine("Disabled");
break;
}
}
}
}
Imports System.Device.Location
Module GetLocationEvent
Sub ShowStatusUpdates()
Dim Watcher As GeoCoordinateWatcher
Watcher = New GeoCoordinateWatcher()
watcher.Start()
AddHandler Watcher.StatusChanged, AddressOf watcher_StatusChanged
Console.WriteLine("Enter any key to quit.")
Console.ReadLine()
End Sub
Sub watcher_StatusChanged(ByVal sender As Object, ByVal e As GeoPositionStatusChangedEventArgs)
Select Case e.Status
Case GeoPositionStatus.Initializing
Console.WriteLine("Working on location fix")
Case GeoPositionStatus.Ready
Console.WriteLine("Have location")
Case GeoPositionStatus.NoData
Console.WriteLine("No data")
Case GeoPositionStatus.Disabled
Console.WriteLine("Disabled")
End Select
End Sub
Public Sub Main()
ShowStatusUpdates()
End Sub
End Module
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.