File: artifacts\obj\System.Net.Http\Debug\net10.0\System.Net.Http.notsupported.cs
Project: src\src\libraries\System.Net.Http\src\System.Net.Http.csproj (System.Net.Http)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// ------------------------------------------------------------------------------
// Changes to this file must follow the https://aka.ms/api-review process.
// ------------------------------------------------------------------------------
 
namespace System.Net.Http
{
    public partial class ByteArrayContent : System.Net.Http.HttpContent
    {
        public ByteArrayContent(byte[] content) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public ByteArrayContent(byte[] content, int offset, int count) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.IO.Stream CreateContentReadStream(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.Threading.Tasks.Task<System.IO.Stream> CreateContentReadStreamAsync() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override void SerializeToStream(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext? context) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected internal override bool TryComputeLength(out long length) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public enum ClientCertificateOption
    {
        Manual = 0,
        Automatic = 1,
    }
    public abstract partial class DelegatingHandler : System.Net.Http.HttpMessageHandler
    {
        protected DelegatingHandler() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected DelegatingHandler(System.Net.Http.HttpMessageHandler innerHandler) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        [System.Diagnostics.CodeAnalysis.DisallowNullAttribute]
        public System.Net.Http.HttpMessageHandler? InnerHandler { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        protected override void Dispose(bool disposing) { }
        protected internal override System.Net.Http.HttpResponseMessage Send(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected internal override System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class FormUrlEncodedContent : System.Net.Http.ByteArrayContent
    {
        public FormUrlEncodedContent(
            System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<
                #nullable disable
                string, string
                #nullable restore
            >> nameValueCollection) : base (default(byte[])) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public delegate System.Text.Encoding? HeaderEncodingSelector<TContext>(string headerName, TContext context);
    public partial class HttpClient : System.Net.Http.HttpMessageInvoker
    {
        public HttpClient() : base (default(System.Net.Http.HttpMessageHandler)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public HttpClient(System.Net.Http.HttpMessageHandler handler) : base (default(System.Net.Http.HttpMessageHandler)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public HttpClient(System.Net.Http.HttpMessageHandler handler, bool disposeHandler) : base (default(System.Net.Http.HttpMessageHandler)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Uri? BaseAddress { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public static System.Net.IWebProxy DefaultProxy { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpRequestHeaders DefaultRequestHeaders { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Version DefaultRequestVersion { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.HttpVersionPolicy DefaultVersionPolicy { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public long MaxResponseContentBufferSize { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.TimeSpan Timeout { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public void CancelPendingRequests() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> DeleteAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> DeleteAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> DeleteAsync(System.Uri? requestUri) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> DeleteAsync(System.Uri? requestUri, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override void Dispose(bool disposing) { }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> GetAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> GetAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri, System.Net.Http.HttpCompletionOption completionOption) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> GetAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri, System.Net.Http.HttpCompletionOption completionOption, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> GetAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> GetAsync(System.Uri? requestUri) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> GetAsync(System.Uri? requestUri, System.Net.Http.HttpCompletionOption completionOption) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> GetAsync(System.Uri? requestUri, System.Net.Http.HttpCompletionOption completionOption, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> GetAsync(System.Uri? requestUri, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<byte[]> GetByteArrayAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<byte[]> GetByteArrayAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<byte[]> GetByteArrayAsync(System.Uri? requestUri) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<byte[]> GetByteArrayAsync(System.Uri? requestUri, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.IO.Stream> GetStreamAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.IO.Stream> GetStreamAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.IO.Stream> GetStreamAsync(System.Uri? requestUri) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.IO.Stream> GetStreamAsync(System.Uri? requestUri, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<string> GetStringAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<string> GetStringAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<string> GetStringAsync(System.Uri? requestUri) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<string> GetStringAsync(System.Uri? requestUri, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PatchAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri, System.Net.Http.HttpContent? content) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PatchAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri, System.Net.Http.HttpContent? content, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PatchAsync(System.Uri? requestUri, System.Net.Http.HttpContent? content) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PatchAsync(System.Uri? requestUri, System.Net.Http.HttpContent? content, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PostAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri, System.Net.Http.HttpContent? content) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PostAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri, System.Net.Http.HttpContent? content, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PostAsync(System.Uri? requestUri, System.Net.Http.HttpContent? content) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PostAsync(System.Uri? requestUri, System.Net.Http.HttpContent? content, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PutAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri, System.Net.Http.HttpContent? content) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PutAsync([System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri, System.Net.Http.HttpContent? content, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PutAsync(System.Uri? requestUri, System.Net.Http.HttpContent? content) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PutAsync(System.Uri? requestUri, System.Net.Http.HttpContent? content, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public System.Net.Http.HttpResponseMessage Send(System.Net.Http.HttpRequestMessage request) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public System.Net.Http.HttpResponseMessage Send(System.Net.Http.HttpRequestMessage request, System.Net.Http.HttpCompletionOption completionOption) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public System.Net.Http.HttpResponseMessage Send(System.Net.Http.HttpRequestMessage request, System.Net.Http.HttpCompletionOption completionOption, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public override System.Net.Http.HttpResponseMessage Send(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Net.Http.HttpCompletionOption completionOption) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Net.Http.HttpCompletionOption completionOption, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class HttpClientHandler : System.Net.Http.HttpMessageHandler
    {
        public HttpClientHandler() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public bool AllowAutoRedirect { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public System.Net.DecompressionMethods AutomaticDecompression { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public bool CheckCertificateRevocationList { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.ClientCertificateOption ClientCertificateOptions { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public System.Security.Cryptography.X509Certificates.X509CertificateCollection ClientCertificates { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public System.Net.CookieContainer CookieContainer { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public System.Net.ICredentials? Credentials { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public static System.Func<System.Net.Http.HttpRequestMessage, System.Security.Cryptography.X509Certificates.X509Certificate2?, System.Security.Cryptography.X509Certificates.X509Chain?, System.Net.Security.SslPolicyErrors, bool> DangerousAcceptAnyServerCertificateValidator { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public System.Net.ICredentials? DefaultProxyCredentials { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public int MaxAutomaticRedirections { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public int MaxConnectionsPerServer { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public long MaxRequestContentBufferSize { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public int MaxResponseHeadersLength { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.CLSCompliantAttribute(false)]
        public System.Diagnostics.Metrics.IMeterFactory? MeterFactory { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public bool PreAuthenticate { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Collections.Generic.IDictionary<string, object?> Properties { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("ios")]
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("tvos")]
        public System.Net.IWebProxy? Proxy { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public System.Func<System.Net.Http.HttpRequestMessage, System.Security.Cryptography.X509Certificates.X509Certificate2?, System.Security.Cryptography.X509Certificates.X509Chain?, System.Net.Security.SslPolicyErrors, bool>? ServerCertificateCustomValidationCallback { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public System.Security.Authentication.SslProtocols SslProtocols { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public virtual bool SupportsAutomaticDecompression { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public virtual bool SupportsProxy { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public virtual bool SupportsRedirectConfiguration { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public bool UseCookies { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public bool UseDefaultCredentials { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public bool UseProxy { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        protected override void Dispose(bool disposing) { }
        //
        // Attributes are commented out due to https://github.com/dotnet/arcade/issues/7585
        // API compat will fail until this is fixed
        //
        //[System.Runtime.Versioning.UnsupportedOSPlatformAttribute("android")]
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        //[System.Runtime.Versioning.UnsupportedOSPlatformAttributeUnsupportedOSPlatform("ios")]
        //[System.Runtime.Versioning.UnsupportedOSPlatformAttributeUnsupportedOSPlatform("tvos")]
        protected internal override System.Net.Http.HttpResponseMessage Send(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected internal override System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public enum HttpCompletionOption
    {
        ResponseContentRead = 0,
        ResponseHeadersRead = 1,
    }
    public abstract partial class HttpContent : System.IDisposable
    {
        protected HttpContent() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Net.Http.Headers.HttpContentHeaders Headers { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public void CopyTo(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task CopyToAsync(System.IO.Stream stream) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task CopyToAsync(System.IO.Stream stream, System.Net.TransportContext? context) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task CopyToAsync(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task CopyToAsync(System.IO.Stream stream, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected virtual System.IO.Stream CreateContentReadStream(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected virtual System.Threading.Tasks.Task<System.IO.Stream> CreateContentReadStreamAsync() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected virtual System.Threading.Tasks.Task<System.IO.Stream> CreateContentReadStreamAsync(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        public System.Threading.Tasks.Task LoadIntoBufferAsync() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task LoadIntoBufferAsync(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task LoadIntoBufferAsync(long maxBufferSize) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task LoadIntoBufferAsync(long maxBufferSize, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<byte[]> ReadAsByteArrayAsync() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<byte[]> ReadAsByteArrayAsync(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.IO.Stream ReadAsStream() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.IO.Stream ReadAsStream(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.IO.Stream> ReadAsStreamAsync() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<System.IO.Stream> ReadAsStreamAsync(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<string> ReadAsStringAsync() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Threading.Tasks.Task<string> ReadAsStringAsync(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected virtual void SerializeToStream(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected abstract System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext? context);
        protected virtual System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected internal abstract bool TryComputeLength(out long length);
    }
    public partial class HttpIOException : System.IO.IOException
    {
        public HttpIOException(System.Net.Http.HttpRequestError httpRequestError, string? message = null, System.Exception? innerException = null) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Net.Http.HttpRequestError HttpRequestError { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override string Message { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
    }
    public enum HttpKeepAlivePingPolicy
    {
        WithActiveRequests = 0,
        Always = 1,
    }
    public abstract partial class HttpMessageHandler : System.IDisposable
    {
        protected HttpMessageHandler() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        protected internal virtual System.Net.Http.HttpResponseMessage Send(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected internal abstract System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken);
    }
    public partial class HttpMessageInvoker : System.IDisposable
    {
        public HttpMessageInvoker(System.Net.Http.HttpMessageHandler handler) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public HttpMessageInvoker(System.Net.Http.HttpMessageHandler handler, bool disposeHandler) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
        public virtual System.Net.Http.HttpResponseMessage Send(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public virtual System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class HttpMethod : System.IEquatable<System.Net.Http.HttpMethod>
    {
        public HttpMethod(string method) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.HttpMethod Connect { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public static System.Net.Http.HttpMethod Delete { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public static System.Net.Http.HttpMethod Get { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public static System.Net.Http.HttpMethod Head { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string Method { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public static System.Net.Http.HttpMethod Options { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public static System.Net.Http.HttpMethod Patch { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public static System.Net.Http.HttpMethod Post { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public static System.Net.Http.HttpMethod Put { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public static System.Net.Http.HttpMethod Query { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public static System.Net.Http.HttpMethod Trace { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] System.Net.Http.HttpMethod? other) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool operator ==(System.Net.Http.HttpMethod? left, System.Net.Http.HttpMethod? right) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool operator !=(System.Net.Http.HttpMethod? left, System.Net.Http.HttpMethod? right) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.HttpMethod Parse(System.ReadOnlySpan<char> method) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public sealed partial class HttpProtocolException : System.Net.Http.HttpIOException
    {
        public HttpProtocolException(long errorCode, string message, System.Exception? innerException) : base (default(System.Net.Http.HttpRequestError), default(string), default(System.Exception)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public long ErrorCode { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
    }
    public enum HttpRequestError
    {
        Unknown = 0,
        NameResolutionError = 1,
        ConnectionError = 2,
        SecureConnectionError = 3,
        HttpProtocolError = 4,
        ExtendedConnectNotSupported = 5,
        VersionNegotiationError = 6,
        UserAuthenticationError = 7,
        ProxyTunnelError = 8,
        InvalidResponse = 9,
        ResponseEnded = 10,
        ConfigurationLimitExceeded = 11,
    }
    public partial class HttpRequestException : System.Exception
    {
        public HttpRequestException() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public HttpRequestException(System.Net.Http.HttpRequestError httpRequestError, string? message = null, System.Exception? inner = null, System.Net.HttpStatusCode? statusCode = default(System.Net.HttpStatusCode?)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public HttpRequestException(string? message) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public HttpRequestException(string? message, System.Exception? inner) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public HttpRequestException(string? message, System.Exception? inner, System.Net.HttpStatusCode? statusCode) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Net.Http.HttpRequestError HttpRequestError { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.HttpStatusCode? StatusCode { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
    }
    public partial class HttpRequestMessage : System.IDisposable
    {
        public HttpRequestMessage() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public HttpRequestMessage(System.Net.Http.HttpMethod method, [System.Diagnostics.CodeAnalysis.StringSyntaxAttribute("Uri")] string? requestUri) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public HttpRequestMessage(System.Net.Http.HttpMethod method, System.Uri? requestUri) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Net.Http.HttpContent? Content { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpRequestHeaders Headers { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.HttpMethod Method { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.HttpRequestOptions Options { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.ObsoleteAttribute("HttpRequestMessage.Properties has been deprecated. Use Options instead.")]
        public System.Collections.Generic.IDictionary<string, object?> Properties { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Uri? RequestUri { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Version Version { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.HttpVersionPolicy VersionPolicy { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public sealed partial class HttpRequestOptions : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string, object?>>, System.Collections.Generic.IDictionary<string, object?>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, object?>>, System.Collections.Generic.IReadOnlyCollection<System.Collections.Generic.KeyValuePair<string, object?>>, System.Collections.Generic.IReadOnlyDictionary<string, object?>, System.Collections.IEnumerable
    {
        public HttpRequestOptions() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        int System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string, object?>>.Count { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string, object?>>.IsReadOnly { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        object? System.Collections.Generic.IDictionary<string, object?>.this[string key] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        System.Collections.Generic.ICollection<string> System.Collections.Generic.IDictionary<string, object?>.Keys { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        System.Collections.Generic.ICollection<object?> System.Collections.Generic.IDictionary<string, object?>.Values { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        int System.Collections.Generic.IReadOnlyCollection<System.Collections.Generic.KeyValuePair<string, object?>>.Count { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        object? System.Collections.Generic.IReadOnlyDictionary<string, object?>.this[string key] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        System.Collections.Generic.IEnumerable<string> System.Collections.Generic.IReadOnlyDictionary<string, object?>.Keys { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        System.Collections.Generic.IEnumerable<object?> System.Collections.Generic.IReadOnlyDictionary<string, object?>.Values { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public void Set<TValue>(System.Net.Http.HttpRequestOptionsKey<TValue> key, TValue value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string, object?>>.Add(System.Collections.Generic.KeyValuePair<string, object> item) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string, object?>>.Clear() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string, object?>>.Contains(System.Collections.Generic.KeyValuePair<string, object> item) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string, object?>>.CopyTo(System.Collections.Generic.KeyValuePair<string, object>[] array, int arrayIndex) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string, object?>>.Remove(System.Collections.Generic.KeyValuePair<string, object> item) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        void System.Collections.Generic.IDictionary<string, object?>.Add(string key, object? value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        bool System.Collections.Generic.IDictionary<string, object?>.ContainsKey(string key) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        bool System.Collections.Generic.IDictionary<string, object?>.Remove(string key) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        bool System.Collections.Generic.IDictionary<string, object?>.TryGetValue(string key, out object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, object?>> System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, object?>>.GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        bool System.Collections.Generic.IReadOnlyDictionary<string, object?>.ContainsKey(string key) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        bool System.Collections.Generic.IReadOnlyDictionary<string, object?>.TryGetValue(string key, out object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public bool TryGetValue<TValue>(System.Net.Http.HttpRequestOptionsKey<TValue> key, [System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute(false)] out TValue value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public readonly partial struct HttpRequestOptionsKey<TValue>
    {
        private readonly object _dummy;
        private readonly int _dummyPrimitive;
        public HttpRequestOptionsKey(string key) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public string Key { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
    }
    public partial class HttpResponseMessage : System.IDisposable
    {
        public HttpResponseMessage() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public HttpResponseMessage(System.Net.HttpStatusCode statusCode) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        [System.Diagnostics.CodeAnalysis.AllowNullAttribute]
        public System.Net.Http.HttpContent Content { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpResponseHeaders Headers { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool IsSuccessStatusCode { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string? ReasonPhrase { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.HttpRequestMessage? RequestMessage { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.HttpStatusCode StatusCode { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpResponseHeaders TrailingHeaders { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Version Version { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        public System.Net.Http.HttpResponseMessage EnsureSuccessStatusCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public enum HttpVersionPolicy
    {
        RequestVersionOrLower = 0,
        RequestVersionOrHigher = 1,
        RequestVersionExact = 2,
    }
    public abstract partial class MessageProcessingHandler : System.Net.Http.DelegatingHandler
    {
        protected MessageProcessingHandler() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected MessageProcessingHandler(System.Net.Http.HttpMessageHandler innerHandler) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected abstract System.Net.Http.HttpRequestMessage ProcessRequest(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken);
        protected abstract System.Net.Http.HttpResponseMessage ProcessResponse(System.Net.Http.HttpResponseMessage response, System.Threading.CancellationToken cancellationToken);
        protected internal sealed override System.Net.Http.HttpResponseMessage Send(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected internal sealed override System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class MultipartContent : System.Net.Http.HttpContent, System.Collections.Generic.IEnumerable<System.Net.Http.HttpContent>, System.Collections.IEnumerable
    {
        public MultipartContent() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public MultipartContent(string subtype) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public MultipartContent(string subtype, string boundary) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Net.Http.HeaderEncodingSelector<System.Net.Http.HttpContent>? HeaderEncodingSelector { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public virtual void Add(System.Net.Http.HttpContent content) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.IO.Stream CreateContentReadStream(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.Threading.Tasks.Task<System.IO.Stream> CreateContentReadStreamAsync() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.Threading.Tasks.Task<System.IO.Stream> CreateContentReadStreamAsync(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override void Dispose(bool disposing) { }
        public System.Collections.Generic.IEnumerator<System.Net.Http.HttpContent> GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override void SerializeToStream(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext? context) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected internal override bool TryComputeLength(out long length) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class MultipartFormDataContent : System.Net.Http.MultipartContent
    {
        public MultipartFormDataContent() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public MultipartFormDataContent(string boundary) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override void Add(System.Net.Http.HttpContent content) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public void Add(System.Net.Http.HttpContent content, string name) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public void Add(System.Net.Http.HttpContent content, string name, string fileName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public sealed partial class ReadOnlyMemoryContent : System.Net.Http.HttpContent
    {
        public ReadOnlyMemoryContent(System.ReadOnlyMemory<byte> content) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.IO.Stream CreateContentReadStream(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.Threading.Tasks.Task<System.IO.Stream> CreateContentReadStreamAsync() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override void SerializeToStream(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext? context) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected internal override bool TryComputeLength(out long length) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public sealed partial class SocketsHttpConnectionContext
    {
        internal SocketsHttpConnectionContext() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Net.DnsEndPoint DnsEndPoint { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.HttpRequestMessage InitialRequestMessage { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
    }
    [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")]
    public sealed partial class SocketsHttpHandler : System.Net.Http.HttpMessageHandler
    {
        public SocketsHttpHandler() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        [System.CLSCompliantAttribute(false)]
        public System.Diagnostics.DistributedContextPropagator? ActivityHeadersPropagator { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool AllowAutoRedirect { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.DecompressionMethods AutomaticDecompression { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Func<System.Net.Http.SocketsHttpConnectionContext, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.IO.Stream>>? ConnectCallback { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.TimeSpan ConnectTimeout { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Diagnostics.CodeAnalysis.AllowNullAttribute]
        public System.Net.CookieContainer CookieContainer { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.ICredentials? Credentials { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.ICredentials? DefaultProxyCredentials { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool EnableMultipleHttp2Connections { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool EnableMultipleHttp3Connections { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.TimeSpan Expect100ContinueTimeout { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public int InitialHttp2StreamWindowSize { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute("browser")]
        public static bool IsSupported { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.TimeSpan KeepAlivePingDelay { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.HttpKeepAlivePingPolicy KeepAlivePingPolicy { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.TimeSpan KeepAlivePingTimeout { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public int MaxAutomaticRedirections { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public int MaxConnectionsPerServer { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public int MaxResponseDrainSize { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public int MaxResponseHeadersLength { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.CLSCompliantAttribute(false)]
        public System.Diagnostics.Metrics.IMeterFactory? MeterFactory { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Func<System.Net.Http.SocketsHttpPlaintextStreamFilterContext, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.IO.Stream>>? PlaintextStreamFilter { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.TimeSpan PooledConnectionIdleTimeout { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.TimeSpan PooledConnectionLifetime { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool PreAuthenticate { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Collections.Generic.IDictionary<string, object?> Properties { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.IWebProxy? Proxy { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.HeaderEncodingSelector<System.Net.Http.HttpRequestMessage>? RequestHeaderEncodingSelector { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.TimeSpan ResponseDrainTimeout { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.HeaderEncodingSelector<System.Net.Http.HttpRequestMessage>? ResponseHeaderEncodingSelector { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Diagnostics.CodeAnalysis.AllowNullAttribute]
        public System.Net.Security.SslClientAuthenticationOptions SslOptions { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool UseCookies { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool UseProxy { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        protected override void Dispose(bool disposing) { }
        protected internal override System.Net.Http.HttpResponseMessage Send(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected internal override System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public sealed partial class SocketsHttpPlaintextStreamFilterContext
    {
        internal SocketsHttpPlaintextStreamFilterContext() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Net.Http.HttpRequestMessage InitialRequestMessage { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Version NegotiatedHttpVersion { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.IO.Stream PlaintextStream { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
    }
    public partial class StreamContent : System.Net.Http.HttpContent
    {
        public StreamContent(System.IO.Stream content) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public StreamContent(System.IO.Stream content, int bufferSize) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.IO.Stream CreateContentReadStream(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.Threading.Tasks.Task<System.IO.Stream> CreateContentReadStreamAsync() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override void Dispose(bool disposing) { }
        protected override void SerializeToStream(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext? context) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected internal override bool TryComputeLength(out long length) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class StringContent : System.Net.Http.ByteArrayContent
    {
        public StringContent(string content) : base (default(byte[])) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public StringContent(string content, System.Net.Http.Headers.MediaTypeHeaderValue? mediaType) : base (default(byte[])) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public StringContent(string content, System.Text.Encoding? encoding) : base (default(byte[])) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public StringContent(string content, System.Text.Encoding? encoding, System.Net.Http.Headers.MediaTypeHeaderValue? mediaType) : base (default(byte[])) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public StringContent(string content, System.Text.Encoding? encoding, string? mediaType) : base (default(byte[])) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        protected override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
}
namespace System.Net.Http.Headers
{
    public partial class AuthenticationHeaderValue : System.ICloneable
    {
        public AuthenticationHeaderValue(string scheme) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public AuthenticationHeaderValue(string scheme, string? parameter) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public string? Parameter { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string Scheme { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.AuthenticationHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.AuthenticationHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class CacheControlHeaderValue : System.ICloneable
    {
        public CacheControlHeaderValue() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Collections.Generic.ICollection<System.Net.Http.Headers.NameValueHeaderValue> Extensions { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.TimeSpan? MaxAge { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool MaxStale { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.TimeSpan? MaxStaleLimit { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.TimeSpan? MinFresh { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool MustRevalidate { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool NoCache { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Collections.Generic.ICollection<string> NoCacheHeaders { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool NoStore { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool NoTransform { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool OnlyIfCached { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool Private { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Collections.Generic.ICollection<string> PrivateHeaders { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool ProxyRevalidate { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool Public { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.TimeSpan? SharedMaxAge { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.CacheControlHeaderValue Parse(string? input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse(string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.CacheControlHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class ContentDispositionHeaderValue : System.ICloneable
    {
        protected ContentDispositionHeaderValue(System.Net.Http.Headers.ContentDispositionHeaderValue source) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public ContentDispositionHeaderValue(string dispositionType) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.DateTimeOffset? CreationDate { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string DispositionType { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string? FileName { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string? FileNameStar { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.DateTimeOffset? ModificationDate { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string? Name { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Collections.Generic.ICollection<System.Net.Http.Headers.NameValueHeaderValue> Parameters { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.DateTimeOffset? ReadDate { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public long? Size { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.ContentDispositionHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.ContentDispositionHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class ContentRangeHeaderValue : System.ICloneable
    {
        public ContentRangeHeaderValue(long length) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public ContentRangeHeaderValue(long from, long to) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public ContentRangeHeaderValue(long from, long to, long length) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public long? From { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool HasLength { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool HasRange { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public long? Length { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public long? To { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string Unit { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.ContentRangeHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.ContentRangeHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class EntityTagHeaderValue : System.ICloneable
    {
        public EntityTagHeaderValue(string tag) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public EntityTagHeaderValue(string tag, bool isWeak) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.EntityTagHeaderValue Any { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool IsWeak { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string Tag { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.EntityTagHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.EntityTagHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public readonly partial struct HeaderStringValues : System.Collections.Generic.IEnumerable<string>, System.Collections.Generic.IReadOnlyCollection<string>, System.Collections.IEnumerable
    {
        private readonly object _dummy;
        private readonly int _dummyPrimitive;
        public int Count { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HeaderStringValues.Enumerator GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        System.Collections.Generic.IEnumerator<string> System.Collections.Generic.IEnumerable<string>.GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public partial struct Enumerator : System.Collections.Generic.IEnumerator<string>, System.Collections.IEnumerator, System.IDisposable
        {
            private object _dummy;
            private int _dummyPrimitive;
            public string Current { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
            object System.Collections.IEnumerator.Current { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
            public void Dispose() { }
            public bool MoveNext() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
            void System.Collections.IEnumerator.Reset() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        }
    }
    public sealed partial class HttpContentHeaders : System.Net.Http.Headers.HttpHeaders
    {
        internal HttpContentHeaders() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Collections.Generic.ICollection<string> Allow { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.ContentDispositionHeaderValue? ContentDisposition { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Collections.Generic.ICollection<string> ContentEncoding { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Collections.Generic.ICollection<string> ContentLanguage { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public long? ContentLength { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Uri? ContentLocation { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public byte[]? ContentMD5 { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.ContentRangeHeaderValue? ContentRange { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.MediaTypeHeaderValue? ContentType { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.DateTimeOffset? Expires { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.DateTimeOffset? LastModified { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
    }
    public abstract partial class HttpHeaders : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Collections.Generic.IEnumerable<string>>>, System.Collections.IEnumerable
    {
        protected HttpHeaders() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Net.Http.Headers.HttpHeadersNonValidated NonValidated { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public void Add(string name, System.Collections.Generic.IEnumerable<string?> values) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public void Add(string name, string? value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public void Clear() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public bool Contains(string name) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, System.Collections.Generic.IEnumerable<string>>> GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Collections.Generic.IEnumerable<string> GetValues(string name) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public bool Remove(string name) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public bool TryAddWithoutValidation(string name, System.Collections.Generic.IEnumerable<string?> values) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public bool TryAddWithoutValidation(string name, string? value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public bool TryGetValues(string name, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Collections.Generic.IEnumerable<string>? values) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public readonly partial struct HttpHeadersNonValidated : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Net.Http.Headers.HeaderStringValues>>, System.Collections.Generic.IReadOnlyCollection<System.Collections.Generic.KeyValuePair<string, System.Net.Http.Headers.HeaderStringValues>>, System.Collections.Generic.IReadOnlyDictionary<string, System.Net.Http.Headers.HeaderStringValues>, System.Collections.IEnumerable
    {
        private readonly object _dummy;
        private readonly int _dummyPrimitive;
        public int Count { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HeaderStringValues this[string headerName] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        System.Collections.Generic.IEnumerable<string> System.Collections.Generic.IReadOnlyDictionary<string, System.Net.Http.Headers.HeaderStringValues>.Keys { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        System.Collections.Generic.IEnumerable<System.Net.Http.Headers.HeaderStringValues> System.Collections.Generic.IReadOnlyDictionary<string, System.Net.Http.Headers.HeaderStringValues>.Values { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool Contains(string headerName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Net.Http.Headers.HttpHeadersNonValidated.Enumerator GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, System.Net.Http.Headers.HeaderStringValues>> System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Net.Http.Headers.HeaderStringValues>>.GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        bool System.Collections.Generic.IReadOnlyDictionary<string, System.Net.Http.Headers.HeaderStringValues>.ContainsKey(string key) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        bool System.Collections.Generic.IReadOnlyDictionary<string, System.Net.Http.Headers.HeaderStringValues>.TryGetValue(string key, out System.Net.Http.Headers.HeaderStringValues value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public bool TryGetValues(string headerName, out System.Net.Http.Headers.HeaderStringValues values) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public partial struct Enumerator : System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, System.Net.Http.Headers.HeaderStringValues>>, System.Collections.IEnumerator, System.IDisposable
        {
            private object _dummy;
            private int _dummyPrimitive;
            public System.Collections.Generic.KeyValuePair<string, System.Net.Http.Headers.HeaderStringValues> Current { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
            object System.Collections.IEnumerator.Current { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
            public void Dispose() { }
            public bool MoveNext() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
            void System.Collections.IEnumerator.Reset() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        }
    }
    public sealed partial class HttpHeaderValueCollection<T> : System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.IEnumerable where T : class
    {
        internal HttpHeaderValueCollection() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public int Count { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool IsReadOnly { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public void Add(T item) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public void Clear() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public bool Contains(T item) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public void CopyTo(T[] array, int arrayIndex) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Collections.Generic.IEnumerator<T> GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public void ParseAdd(string? input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public bool Remove(T item) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public bool TryParseAdd(string? input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public sealed partial class HttpRequestHeaders : System.Net.Http.Headers.HttpHeaders
    {
        internal HttpRequestHeaders() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.MediaTypeWithQualityHeaderValue> Accept { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.StringWithQualityHeaderValue> AcceptCharset { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.StringWithQualityHeaderValue> AcceptEncoding { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.StringWithQualityHeaderValue> AcceptLanguage { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.AuthenticationHeaderValue? Authorization { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.CacheControlHeaderValue? CacheControl { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<string> Connection { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool? ConnectionClose { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.DateTimeOffset? Date { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.NameValueWithParametersHeaderValue> Expect { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool? ExpectContinue { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string? From { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string? Host { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.EntityTagHeaderValue> IfMatch { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.DateTimeOffset? IfModifiedSince { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.EntityTagHeaderValue> IfNoneMatch { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.RangeConditionHeaderValue? IfRange { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.DateTimeOffset? IfUnmodifiedSince { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public int? MaxForwards { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.NameValueHeaderValue> Pragma { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string? Protocol { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.AuthenticationHeaderValue? ProxyAuthorization { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.RangeHeaderValue? Range { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Uri? Referrer { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.TransferCodingWithQualityHeaderValue> TE { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<string> Trailer { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.TransferCodingHeaderValue> TransferEncoding { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool? TransferEncodingChunked { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.ProductHeaderValue> Upgrade { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.ProductInfoHeaderValue> UserAgent { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.ViaHeaderValue> Via { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.WarningHeaderValue> Warning { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
    }
    public sealed partial class HttpResponseHeaders : System.Net.Http.Headers.HttpHeaders
    {
        internal HttpResponseHeaders() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Net.Http.Headers.HttpHeaderValueCollection<string> AcceptRanges { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.TimeSpan? Age { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.CacheControlHeaderValue? CacheControl { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<string> Connection { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool? ConnectionClose { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.DateTimeOffset? Date { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.EntityTagHeaderValue? ETag { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Uri? Location { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.NameValueHeaderValue> Pragma { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.AuthenticationHeaderValue> ProxyAuthenticate { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.RetryConditionHeaderValue? RetryAfter { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.ProductInfoHeaderValue> Server { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<string> Trailer { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.TransferCodingHeaderValue> TransferEncoding { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public bool? TransferEncodingChunked { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.ProductHeaderValue> Upgrade { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<string> Vary { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.ViaHeaderValue> Via { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.WarningHeaderValue> Warning { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.AuthenticationHeaderValue> WwwAuthenticate { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
    }
    public partial class MediaTypeHeaderValue : System.ICloneable
    {
        protected MediaTypeHeaderValue(System.Net.Http.Headers.MediaTypeHeaderValue source) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public MediaTypeHeaderValue(string mediaType) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public MediaTypeHeaderValue(string mediaType, string? charSet) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public string? CharSet { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        [System.Diagnostics.CodeAnalysis.DisallowNullAttribute]
        public string? MediaType { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Collections.Generic.ICollection<System.Net.Http.Headers.NameValueHeaderValue> Parameters { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.MediaTypeHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.MediaTypeHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public sealed partial class MediaTypeWithQualityHeaderValue : System.Net.Http.Headers.MediaTypeHeaderValue, System.ICloneable
    {
        public MediaTypeWithQualityHeaderValue(string mediaType) : base (default(System.Net.Http.Headers.MediaTypeHeaderValue)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public MediaTypeWithQualityHeaderValue(string mediaType, double quality) : base (default(System.Net.Http.Headers.MediaTypeHeaderValue)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public double? Quality { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public static new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.MediaTypeWithQualityHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class NameValueHeaderValue : System.ICloneable
    {
        protected internal NameValueHeaderValue(System.Net.Http.Headers.NameValueHeaderValue source) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public NameValueHeaderValue(string name) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public NameValueHeaderValue(string name, string? value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public string Name { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string? Value { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.NameValueHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.NameValueHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class NameValueWithParametersHeaderValue : System.Net.Http.Headers.NameValueHeaderValue, System.ICloneable
    {
        protected NameValueWithParametersHeaderValue(System.Net.Http.Headers.NameValueWithParametersHeaderValue source) : base (default(string)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public NameValueWithParametersHeaderValue(string name) : base (default(string)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public NameValueWithParametersHeaderValue(string name, string? value) : base (default(string)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Collections.Generic.ICollection<System.Net.Http.Headers.NameValueHeaderValue> Parameters { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static new System.Net.Http.Headers.NameValueWithParametersHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.NameValueWithParametersHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class ProductHeaderValue : System.ICloneable
    {
        public ProductHeaderValue(string name) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public ProductHeaderValue(string name, string? version) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public string Name { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string? Version { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.ProductHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.ProductHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class ProductInfoHeaderValue : System.ICloneable
    {
        public ProductInfoHeaderValue(System.Net.Http.Headers.ProductHeaderValue product) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public ProductInfoHeaderValue(string comment) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public ProductInfoHeaderValue(string productName, string? productVersion) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public string? Comment { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.ProductHeaderValue? Product { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.ProductInfoHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.ProductInfoHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class RangeConditionHeaderValue : System.ICloneable
    {
        public RangeConditionHeaderValue(System.DateTimeOffset date) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public RangeConditionHeaderValue(System.Net.Http.Headers.EntityTagHeaderValue entityTag) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public RangeConditionHeaderValue(string entityTag) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.DateTimeOffset? Date { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.Headers.EntityTagHeaderValue? EntityTag { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.RangeConditionHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.RangeConditionHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class RangeHeaderValue : System.ICloneable
    {
        public RangeHeaderValue() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public RangeHeaderValue(long? from, long? to) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Collections.Generic.ICollection<System.Net.Http.Headers.RangeItemHeaderValue> Ranges { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string Unit { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.RangeHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.RangeHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class RangeItemHeaderValue : System.ICloneable
    {
        public RangeItemHeaderValue(long? from, long? to) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public long? From { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public long? To { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class RetryConditionHeaderValue : System.ICloneable
    {
        public RetryConditionHeaderValue(System.DateTimeOffset date) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public RetryConditionHeaderValue(System.TimeSpan delta) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.DateTimeOffset? Date { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.TimeSpan? Delta { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.RetryConditionHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.RetryConditionHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class StringWithQualityHeaderValue : System.ICloneable
    {
        public StringWithQualityHeaderValue(string value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public StringWithQualityHeaderValue(string value, double quality) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public double? Quality { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string Value { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.StringWithQualityHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.StringWithQualityHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class TransferCodingHeaderValue : System.ICloneable
    {
        protected TransferCodingHeaderValue(System.Net.Http.Headers.TransferCodingHeaderValue source) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public TransferCodingHeaderValue(string value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Collections.Generic.ICollection<System.Net.Http.Headers.NameValueHeaderValue> Parameters { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string Value { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.TransferCodingHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.TransferCodingHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public sealed partial class TransferCodingWithQualityHeaderValue : System.Net.Http.Headers.TransferCodingHeaderValue, System.ICloneable
    {
        public TransferCodingWithQualityHeaderValue(string value) : base (default(System.Net.Http.Headers.TransferCodingHeaderValue)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public TransferCodingWithQualityHeaderValue(string value, double quality) : base (default(System.Net.Http.Headers.TransferCodingHeaderValue)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public double? Quality { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public static new System.Net.Http.Headers.TransferCodingWithQualityHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.TransferCodingWithQualityHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class ViaHeaderValue : System.ICloneable
    {
        public ViaHeaderValue(string protocolVersion, string receivedBy) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public ViaHeaderValue(string protocolVersion, string receivedBy, string? protocolName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public ViaHeaderValue(string protocolVersion, string receivedBy, string? protocolName, string? comment) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public string? Comment { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string? ProtocolName { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string ProtocolVersion { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string ReceivedBy { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.ViaHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.ViaHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
    public partial class WarningHeaderValue : System.ICloneable
    {
        public WarningHeaderValue(int code, string agent, string text) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public WarningHeaderValue(int code, string agent, string text, System.DateTimeOffset date) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public string Agent { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public int Code { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.DateTimeOffset? Date { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public string Text { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public override bool Equals([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] object? obj) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override int GetHashCode() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static System.Net.Http.Headers.WarningHeaderValue Parse(string input) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public static bool TryParse([System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] string? input, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Net.Http.Headers.WarningHeaderValue? parsedValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
}
namespace System.Net.Http.Metrics
{
    public sealed partial class HttpMetricsEnrichmentContext
    {
        internal HttpMetricsEnrichmentContext() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public System.Exception? Exception { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.HttpRequestMessage Request { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public System.Net.Http.HttpResponseMessage? Response { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  } }
        public static void AddCallback(System.Net.Http.HttpRequestMessage request, System.Action<System.Net.Http.Metrics.HttpMetricsEnrichmentContext> callback) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
        public void AddCustomTag(string name, object? value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp);  }
    }
}