

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