11 references to Baggage
Microsoft.Extensions.Logging (1)
LoggerFactoryScopeProvider.cs (1)
63IEnumerable<KeyValuePair<string, string?>> baggage = activity.Baggage;
Microsoft.Extensions.Telemetry (1)
Logging\Import\LoggerFactoryScopeProvider.cs (1)
78IEnumerable<KeyValuePair<string, string?>> baggage = activity.Baggage;
System.Diagnostics.DiagnosticSource (9)
System\Diagnostics\Activity.cs (6)
338/// <seealso cref="Baggage"/> 436foreach (KeyValuePair<string, string?> keyValue in Baggage) 474/// is useful to log but not needed for runtime control (for the latter, <see cref="Baggage"/>) 484/// is useful to log but not needed for runtime control (for the latter, <see cref="Baggage"/>) 627/// This shows up in the <see cref="Baggage"/> enumeration as well as the <see cref="GetBaggageItem(string)"/> 2236public List<KeyValuePair<string, string?>> Baggage => new List<KeyValuePair<string, string?>>(activity.Baggage);
System\Diagnostics\LegacyPropagator.cs (1)
42InjectBaggage(carrier, activity.Baggage, setter);
System\Diagnostics\PassThroughPropagator.cs (1)
56baggage = activity?.Baggage;
System\Diagnostics\W3CPropagator.cs (1)
45InjectW3CBaggage(carrier, activity.Baggage, setter);