3 overrides of Fields
System.Diagnostics.DiagnosticSource (3)
System\Diagnostics\LegacyPropagator.cs (1)
14public override IReadOnlyCollection<string> Fields { get; } = new ReadOnlyCollection<string>(new[] { TraceParent, RequestId, TraceState, Baggage, CorrelationContext });
System\Diagnostics\NoOutputPropagator.cs (1)
12public override IReadOnlyCollection<string> Fields { get; } = LegacyPropagator.Instance.Fields;
System\Diagnostics\PassThroughPropagator.cs (1)
12public override IReadOnlyCollection<string> Fields { get; } = LegacyPropagator.Instance.Fields;
3 references to Fields
System.Diagnostics.DiagnosticSource (2)
System\Diagnostics\NoOutputPropagator.cs (1)
12public override IReadOnlyCollection<string> Fields { get; } = LegacyPropagator.Instance.Fields;
System\Diagnostics\PassThroughPropagator.cs (1)
12public override IReadOnlyCollection<string> Fields { get; } = LegacyPropagator.Instance.Fields;
System.Net.Http (1)
System\Net\Http\DiagnosticsHandler.cs (1)
34if (autoRedirect && _propagator.Fields is IReadOnlyCollection<string> fields && fields.Count > 0)