DiagnosticSource.StopActivity Method

Definition

Overloads

StopActivity(Activity, Object)

Stops the given Activity, maintains the global Current activity, and notifies consumers that the Activity was stopped.

StopActivity<T>(Activity, T)

StopActivity(Activity, Object)

Stops the given Activity, maintains the global Current activity, and notifies consumers that the Activity was stopped.

public:
 void StopActivity(System::Diagnostics::Activity ^ activity, System::Object ^ args);
public void StopActivity (System.Diagnostics.Activity activity, object? args);
public void StopActivity (System.Diagnostics.Activity activity, object args);
member this.StopActivity : System.Diagnostics.Activity * obj -> unit
Public Sub StopActivity (activity As Activity, args As Object)

Parameters

activity
Activity

The activity to be stopped.

args
Object

An object that represents the value passed as a payload for the event.

Remarks

Producers may pass additional details to the consumer in the payload.

Consumers can access Activity.Current to add context and/or augment telemetry.

Applies to

StopActivity<T>(Activity, T)

public:
generic <typename T>
 void StopActivity(System::Diagnostics::Activity ^ activity, T args);
public void StopActivity<T> (System.Diagnostics.Activity activity, T args);
member this.StopActivity : System.Diagnostics.Activity * 'T -> unit
Public Sub StopActivity(Of T) (activity As Activity, args As T)

Type Parameters

T

Parameters

activity
Activity
args
T

Applies to