Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Activity.SetTag(String, Object) Method

Definition

Namespace:
System.Diagnostics
Assembly:
System.Diagnostics.DiagnosticSource.dll
Package:
System.Diagnostics.DiagnosticSource v11.0.0-preview.5.26302.115
Source:
Activity.cs
Source:
Activity.cs
Source:
Activity.cs
Source:
Activity.cs
Source:
Activity.cs
Source:
Activity.cs
Source:
Activity.cs

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.

Adds or update the activity tag with the input key and value.

public:
 System::Diagnostics::Activity ^ SetTag(System::String ^ key, System::Object ^ value);
public System.Diagnostics.Activity SetTag(string key, object? value);
member this.SetTag : string * obj -> System.Diagnostics.Activity
Public Function SetTag (key As String, value As Object) As Activity

Parameters

key
String

The tag key name.

value
Object

The tag value mapped to the input key.

Returns

this for convenient chaining.

Remarks

  • If the input value is null:
    • If the collection has any tag with the same key, then this tag will get removed from the collection.
    • Otherwise, nothing will happen and the collection will not change.
  • If the input value is not null:
    • If the collection has any tag with the same key, then the value mapped to this key will get updated with the new input value.
    • Otherwise, the key and value will get added as a new tag to the collection.

Applies to


Feedback

Was this page helpful?