ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Core.DeviceLocation.Events Namespace / DeviceLocationSourceChangedEventArgs Class
Members Example

In This Topic
    DeviceLocationSourceChangedEventArgs Class
    In This Topic
    Provides data for the DeviceLocationSourceChangedEvent.
    Object Model
    DeviceLocationSourceChangedEventArgs ClassDeviceLocationSource Class
    Syntax
    public sealed class DeviceLocationSourceChangedEventArgs : System.EventArgs 
    Public NotInheritable Class DeviceLocationSourceChangedEventArgs 
       Inherits System.EventArgs
    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
       System.EventArgs
          ArcGIS.Desktop.Core.DeviceLocation.Events.DeviceLocationSourceChangedEventArgs

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also