ArcGIS Pro 3.4 API Reference Guide
ArcGIS.Desktop.Core.DeviceLocation.Events Namespace / DeviceLocationSourceChangedEventArgs Class / DeviceLocationSource Property
Example Version

DeviceLocationSource Property
Gets the new device location source.
Syntax
public DeviceLocationSource DeviceLocationSource {get;}
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
}
Requirements

Target Platforms: Windows 11, Windows 10

ArcGIS Pro version: 3 or higher.
See Also