11 references to Baggage
Microsoft.Extensions.Logging (1)
LoggerFactoryScopeProvider.cs (1)
63
IEnumerable<KeyValuePair<string, string?>> baggage = activity.
Baggage
;
Microsoft.Extensions.Telemetry (1)
Logging\Import\LoggerFactoryScopeProvider.cs (1)
78
IEnumerable<KeyValuePair<string, string?>> baggage = activity.
Baggage
;
System.Diagnostics.DiagnosticSource (9)
System\Diagnostics\Activity.cs (6)
338
/// <seealso cref="
Baggage
"/>
436
foreach (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)"/>
2236
public List<KeyValuePair<string, string?>> Baggage => new List<KeyValuePair<string, string?>>(activity.
Baggage
);
System\Diagnostics\LegacyPropagator.cs (1)
42
InjectBaggage(carrier, activity.
Baggage
, setter);
System\Diagnostics\PassThroughPropagator.cs (1)
56
baggage = activity?.
Baggage
;
System\Diagnostics\W3CPropagator.cs (1)
45
InjectW3CBaggage(carrier, activity.
Baggage
, setter);