ArcGIS Pro 3.0 API Reference Guide
ArcGIS.Desktop.Core.DeviceLocation.Events Namespace / DeviceLocationSourceChangedEvent Class
Members Example

DeviceLocationSourceChangedEvent Class
Occurs when the local device location source is switched.
Object Model
DeviceLocationSourceChangedEvent ClassSubscriptionToken ClassSubscriptionToken Class
Syntax
Example
Subscribe to DeviceLocationSourceChanged event
private void SubscribeToSourceEvents()
{
  DeviceLocationSourceChangedEvent.Subscribe(OnDeviceLocationSourceChanged);
}
private void OnDeviceLocationSourceChanged(DeviceLocationSourceChangedEventArgs args)
{
  if (args == null)
    return;

  var source = args.DeviceLocationSource; 

  //  TODO - something with the updated source properties
}
Inheritance Hierarchy

System.Object
   ArcGIS.Core.Events.EventBase
      ArcGIS.Core.Events.CompositePresentationEvent<TPayload>
         ArcGIS.Desktop.Core.DeviceLocation.Events.DeviceLocationSourceChangedEvent

Requirements

Target Platforms: Windows 11, Windows 10, Windows 8.1

ArcGIS Pro version: 2.7 or higher.
See Also