The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
GeoCoordinateWatcher.StatusChanged Event
.NET Framework (current version)
Indicates that the status of the GeoCoordinateWatcher object has changed.
Assembly: System.Device (in System.Device.dll)
The StatusChanged event is raised on the same thread that the GeoCoordinateWatcher object was created on.
The following example demonstrates how to handle StatusChanged events.
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
.NET Framework
Available since 4.0
Windows Phone Silverlight
Available since 7.0
Available since 4.0
Windows Phone Silverlight
Available since 7.0
Show: