12 references to AddBaggage
Microsoft.AspNetCore.Diagnostics (1)
src\aspnetcore\src\Shared\Diagnostics\ActivityCreator.cs (1)
122activity.AddBaggage(baggageItem.Key, baggageItem.Value);
Microsoft.AspNetCore.Hosting (1)
src\aspnetcore\src\Shared\Diagnostics\ActivityCreator.cs (1)
122activity.AddBaggage(baggageItem.Key, baggageItem.Value);
Microsoft.AspNetCore.SignalR.Core (1)
src\aspnetcore\src\Shared\Diagnostics\ActivityCreator.cs (1)
122activity.AddBaggage(baggageItem.Key, baggageItem.Value);
Microsoft.Extensions.Telemetry.Tests (8)
Logging\ExtendedLoggerFactoryTests.cs (8)
207activity.AddBaggage("baggageTestKey1", "baggageTestValue"); 257activity.AddBaggage("testKey1", null); 258activity.AddBaggage("testKey2", string.Empty); 259activity.AddBaggage("testKey3", "testValue"); 320activity.AddBaggage("testBaggageKey1", "testBaggageValue"); 351activity.AddBaggage("MyBaggageKey1", "1"); 360activity.AddBaggage("MyBaggageKey2", "2"); 367activity.AddBaggage("MyBaggageKey3", "3");
System.Diagnostics.DiagnosticSource (1)
System\Diagnostics\Activity.cs (1)
431/// Returns the value of the key-value pair added to the activity with <see cref="AddBaggage(string, string)"/>.