8 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 (6)
System\Diagnostics\Activity.cs (6)
338/// <seealso cref="Baggage"/> 480/// is useful to log but not needed for runtime control (for the latter, <see cref="Baggage"/>) 490/// is useful to log but not needed for runtime control (for the latter, <see cref="Baggage"/>) 633/// This shows up in the <see cref="Baggage"/> enumeration as well as the <see cref="GetBaggageItem(string)"/> 1611/// Mirrors the semantics of the <see cref="Baggage"/> property, which uses an iterator 2270public List<KeyValuePair<string, string?>> Baggage => new List<KeyValuePair<string, string?>>(activity.Baggage);