<PackageReference Include="OpenTelemetry.Api" Version="1.16.0" />

OpenTelemetry.Context.Propagation.EnvironmentVariableCarrier

namespace OpenTelemetry.Context.Propagation { internal static class EnvironmentVariableCarrier { public static IReadOnlyDictionary<string, string> CurrentProcess { get; } public static IReadOnlyDictionary<string, string> Capture(IEnumerable<KeyValuePair<string, string>> environmentVariables); public static IEnumerable<string> Get<[Nullable(0)] T>(T carrier, string key) where T : IEnumerable<KeyValuePair<string, string>>; public static void Set<[Nullable(0)] T>(T carrier, string key, string value) where T : IDictionary<string, string>; public static string NormalizeKey(string key); } }