CmdletAdapter<TObjectInstance>.StopProcessing Method

Definition

When overridden in the derived class, interrupts currently running code within the CmdletAdapter<TObjectInstance>. Default implementation in the base class just returns.

public:
 virtual void StopProcessing();
public:
 virtual void StopProcessing();
 virtual void StopProcessing();
public virtual void StopProcessing ();
abstract member StopProcessing : unit -> unit
override this.StopProcessing : unit -> unit
Public Overridable Sub StopProcessing ()

Remarks

The PowerShell engine will call this method on a separate thread from the pipeline thread where BeginProcessing, EndProcessing and other methods are normally being executed.

Applies to