ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Core.Events Namespace / GPExecuteToolEvent Class / Unsubscribe Method / Unsubscribe(Action<GPExecuteToolEventArgs>) Method
The delegate used when subscribing to the event.
Example

In This Topic
    Unsubscribe(Action<GPExecuteToolEventArgs>) Method
    In This Topic
    Removes the first subscriber matching the provided delegate from the subscribers' list..
    Syntax
    Public Overloads Shared Sub Unsubscribe( _
       ByVal action As Action(Of GPExecuteToolEventArgs) _
    ) 
    public static void Unsubscribe( 
       Action<GPExecuteToolEventArgs> action
    )

    Parameters

    action
    The delegate used when subscribing to the event.
    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