

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