

Public NotInheritable Class DeviceLocationSourceChangedEventArgs Inherits System.EventArgs
public sealed class DeviceLocationSourceChangedEventArgs : System.EventArgs
{
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
}
}
System.Object
System.EventArgs
ArcGIS.Desktop.Core.DeviceLocation.Events.DeviceLocationSourceChangedEventArgs
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)