DiagnosticSource.StopActivity Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)
- Source:
- DiagnosticSourceActivity.cs
- Source:
- DiagnosticSourceActivity.cs
- Source:
- DiagnosticSourceActivity.cs
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)
- Source:
- DiagnosticSourceActivity.cs
- Source:
- DiagnosticSourceActivity.cs
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
Werk met ons samen op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en bekijken. Raadpleeg onze gids voor inzenders voor meer informatie.