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