|
// <auto-generated>
using System.Reflection;
namespace System.Net.Http
{
internal static partial class SR
{
private static global::System.Resources.ResourceManager s_resourceManager;
internal static global::System.Resources.ResourceManager ResourceManager => s_resourceManager ?? (s_resourceManager = new global::System.Resources.ResourceManager(typeof(SR)));
internal static global::System.Globalization.CultureInfo Culture { get; set; }
#if !NET20
[global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
#endif
internal static string GetResourceString(string resourceKey, string defaultValue = null) => ResourceManager.GetString(resourceKey, Culture);
private static string GetResourceString(string resourceKey, string[] formatterNames)
{
var value = GetResourceString(resourceKey);
if (formatterNames != null)
{
for (var i = 0; i < formatterNames.Length; i++)
{
value = value.Replace("{" + formatterNames[i] + "}", "{" + i + "}");
}
}
return value;
}
/// <summary>The HTTP headers length exceeded the set limit of {0} bytes.</summary>
internal static string @net_http_headers_exceeded_length => GetResourceString("net_http_headers_exceeded_length");
/// <summary>The HTTP headers length exceeded the set limit of {0} bytes.</summary>
internal static string Formatnet_http_headers_exceeded_length(object p0)
=> string.Format(Culture, GetResourceString("net_http_headers_exceeded_length"), p0);
/// <summary>The header name format is invalid.</summary>
internal static string @net_http_headers_invalid_header_name => GetResourceString("net_http_headers_invalid_header_name");
/// <summary>HPACK integer exceeds limits or has an overlong encoding.</summary>
internal static string @net_http_hpack_bad_integer => GetResourceString("net_http_hpack_bad_integer");
/// <summary>Failed to HPACK encode the headers.</summary>
internal static string @net_http_hpack_encode_failure => GetResourceString("net_http_hpack_encode_failure");
/// <summary>Huffman-coded literal string failed to decode.</summary>
internal static string @net_http_hpack_huffman_decode_failed => GetResourceString("net_http_hpack_huffman_decode_failed");
/// <summary>Incomplete header block received.</summary>
internal static string @net_http_hpack_incomplete_header_block => GetResourceString("net_http_hpack_incomplete_header_block");
/// <summary>Invalid header index: {0} is outside of static table and no dynamic table entry found.</summary>
internal static string @net_http_hpack_invalid_index => GetResourceString("net_http_hpack_invalid_index");
/// <summary>Invalid header index: {0} is outside of static table and no dynamic table entry found.</summary>
internal static string Formatnet_http_hpack_invalid_index(object p0)
=> string.Format(Culture, GetResourceString("net_http_hpack_invalid_index"), p0);
/// <summary>A dynamic table size update of {0} octets is greater than the configured maximum size of {1} octets.</summary>
internal static string @net_http_hpack_large_table_size_update => GetResourceString("net_http_hpack_large_table_size_update");
/// <summary>A dynamic table size update of {0} octets is greater than the configured maximum size of {1} octets.</summary>
internal static string Formatnet_http_hpack_large_table_size_update(object p0, object p1)
=> string.Format(Culture, GetResourceString("net_http_hpack_large_table_size_update"), p0, p1);
/// <summary>Dynamic table size update received after beginning of header block.</summary>
internal static string @net_http_hpack_late_dynamic_table_size_update => GetResourceString("net_http_hpack_late_dynamic_table_size_update");
/// <summary>End of headers reached with incomplete token.</summary>
internal static string @net_http_hpack_unexpected_end => GetResourceString("net_http_hpack_unexpected_end");
/// <summary>Received an invalid header name: '{0}'.</summary>
internal static string @net_http_invalid_header_name => GetResourceString("net_http_invalid_header_name");
/// <summary>Received an invalid header name: '{0}'.</summary>
internal static string Formatnet_http_invalid_header_name(object p0)
=> string.Format(Culture, GetResourceString("net_http_invalid_header_name"), p0);
/// <summary>No dynamic table support</summary>
internal static string @net_http_qpack_no_dynamic_table => GetResourceString("net_http_qpack_no_dynamic_table");
/// <summary>Request headers must contain only ASCII characters.</summary>
internal static string @net_http_request_invalid_char_encoding => GetResourceString("net_http_request_invalid_char_encoding");
/// <summary>Connection aborted by peer ({0}).</summary>
internal static string @net_quic_connectionaborted => GetResourceString("net_quic_connectionaborted");
/// <summary>Connection aborted by peer ({0}).</summary>
internal static string Formatnet_quic_connectionaborted(object p0)
=> string.Format(Culture, GetResourceString("net_quic_connectionaborted"), p0);
/// <summary>QUIC is not supported on this platform. See https://aka.ms/dotnetquic</summary>
internal static string @net_quic_notsupported => GetResourceString("net_quic_notsupported");
/// <summary>Operation aborted.</summary>
internal static string @net_quic_operationaborted => GetResourceString("net_quic_operationaborted");
/// <summary>Stream aborted by peer ({0}).</summary>
internal static string @net_quic_streamaborted => GetResourceString("net_quic_streamaborted");
/// <summary>Stream aborted by peer ({0}).</summary>
internal static string Formatnet_quic_streamaborted(object p0)
=> string.Format(Culture, GetResourceString("net_quic_streamaborted"), p0);
}
}
|