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

In This Topic
    DeviceLocationSource Property
    In This Topic
    Gets the new device location source.
    Syntax
    Public ReadOnly Property DeviceLocationSource As DeviceLocationSource
    public DeviceLocationSource DeviceLocationSource {get;}
    Example
    Subscribe to DeviceLocationSourceChanged event
    {
        DeviceLocationSourceChangedEvent.Subscribe(OnDeviceLocationSourceChanged);
        // Event handler for DeviceLocationSourceChanged event.
        void OnDeviceLocationSourceChanged(DeviceLocationSourceChangedEventArgs args)
        {
            if (args == null)
                return;
    
            var source = args.DeviceLocationSource;
    
            //  TODO - something with the updated source properties
        }
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also