1 type derived from TransferCodingHeaderValue
System.Net.Http (1)
System\Net\Http\Headers\TransferCodingWithQualityHeaderValue.cs (1)
9public sealed class TransferCodingWithQualityHeaderValue : TransferCodingHeaderValue, ICloneable
5 instantiations of TransferCodingHeaderValue
Microsoft.Extensions.Http.Diagnostics.Tests (2)
Logging\HttpClientLoggerTest.cs (2)
609httpResponseMessage.Headers.TransferEncoding.Add(new("compress")); 879httpResponseMessage.Headers.TransferEncoding.Add(new("chunked"));
System.Net.Http (3)
System\Net\Http\Headers\HeaderUtilities.cs (1)
19new TransferCodingHeaderValue("chunked");
System\Net\Http\Headers\TransferCodingHeaderParser.cs (1)
40private static TransferCodingHeaderValue CreateTransferCoding() => new TransferCodingHeaderValue();
System\Net\Http\Headers\TransferCodingHeaderValue.cs (1)
142return new TransferCodingHeaderValue(this);
22 references to TransferCodingHeaderValue
netstandard (1)
netstandard.cs (1)
1119[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.Http.Headers.TransferCodingHeaderValue))]
System.Net.Http (21)
System\Net\Http\Headers\HeaderUtilities.cs (1)
18internal static readonly TransferCodingHeaderValue TransferEncodingChunked =
System\Net\Http\Headers\HttpGeneralHeaders.cs (3)
14private HttpHeaderValueCollection<TransferCodingHeaderValue>? _transferEncoding; 146public HttpHeaderValueCollection<TransferCodingHeaderValue> TransferEncoding => 147_transferEncoding ??= new HttpHeaderValueCollection<TransferCodingHeaderValue>(KnownHeaders.TransferEncoding.Descriptor, _parent);
System\Net\Http\Headers\HttpRequestHeaders.cs (1)
240public HttpHeaderValueCollection<TransferCodingHeaderValue> TransferEncoding
System\Net\Http\Headers\HttpResponseHeaders.cs (1)
108public HttpHeaderValueCollection<TransferCodingHeaderValue> TransferEncoding
System\Net\Http\Headers\TransferCodingHeaderParser.cs (5)
10private readonly Func<TransferCodingHeaderValue> _transferCodingCreator; 22Func<TransferCodingHeaderValue> transferCodingCreator) 33int resultLength = TransferCodingHeaderValue.GetTransferCodingLength(value, startIndex, 34_transferCodingCreator, out TransferCodingHeaderValue? temp); 40private static TransferCodingHeaderValue CreateTransferCoding() => new TransferCodingHeaderValue();
System\Net\Http\Headers\TransferCodingHeaderValue.cs (10)
26protected TransferCodingHeaderValue(TransferCodingHeaderValue source) 40public static TransferCodingHeaderValue Parse(string input) 43return (TransferCodingHeaderValue)TransferCodingHeaderParser.SingleValueParser.ParseValue( 47public static bool TryParse([NotNullWhen(true)] string? input, [NotNullWhen(true)] out TransferCodingHeaderValue? parsedValue) 54parsedValue = (TransferCodingHeaderValue)output!; 61Func<TransferCodingHeaderValue> transferCodingCreator, out TransferCodingHeaderValue? parsedValue) 84TransferCodingHeaderValue transferCodingHeader; 122TransferCodingHeaderValue? other = obj as TransferCodingHeaderValue;