

Public NotInheritable Class DeviceLocationPropertiesUpdatedEvent Inherits ArcGIS.Core.Events.CompositePresentationEvent(Of DeviceLocationPropertiesUpdatedEventArgs)
public sealed class DeviceLocationPropertiesUpdatedEvent : ArcGIS.Core.Events.CompositePresentationEvent<DeviceLocationPropertiesUpdatedEventArgs>
{
DeviceLocationPropertiesUpdatedEvent.Subscribe(OnDeviceLocationPropertiesUpdated);
// Event handler for DeviceLocationPropertiesUpdated event.
static void OnDeviceLocationPropertiesUpdated(DeviceLocationPropertiesUpdatedEventArgs args)
{
if (args == null)
return;
var properties = args.DeviceLocationProperties;
// TODO - something with the updated properties
}
}
System.Object
ArcGIS.Core.Events.EventBase
ArcGIS.Core.Events.CompositePresentationEvent<TPayload>
ArcGIS.Desktop.Core.DeviceLocation.Events.DeviceLocationPropertiesUpdatedEvent
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)