ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Core.Events Namespace / GPExecuteToolEventArgs Class / ID Property
Example

In This Topic
    ID Property (GPExecuteToolEventArgs)
    In This Topic
    unique execute ID
    Syntax
    Public Property ID As String
    public string ID {get; set;}
    Example
    How to use Geoprocessing public event
    {
      ArcGIS.Desktop.Core.Events.GPExecuteToolEvent.Subscribe(e =>
            {
              // Handle the event
              string id = e.ID;           // Same as history ID
              if (e.IsStarting == false)  // Execute completed
                _ = e.GPResult.ReturnValue;
              System.Windows.MessageBox.Show("event triggered.");
            });
      Geoprocessing.ExecuteToolAsync("management.GetCount", Geoprocessing.MakeValueArray(@"c:\shape_file.shp"));
    }
    Requirements

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

    ArcGIS Pro version: 3.1 or higher.
    See Also