2 instantiations of ContentRangeHeaderValue
System.Net.Http (2)
System\Net\Http\Headers\ContentRangeHeaderValue.cs (2)
350ContentRangeHeaderValue result = new ContentRangeHeaderValue(); 370return new ContentRangeHeaderValue(this);
11 references to ContentRangeHeaderValue
netstandard (1)
netstandard.cs (1)
1101[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.Http.Headers.ContentRangeHeaderValue))]
System.Net.Http (10)
System\Net\Http\Headers\ContentRangeHeaderValue.cs (7)
84private ContentRangeHeaderValue(ContentRangeHeaderValue source) 95obj is ContentRangeHeaderValue other && 138public static ContentRangeHeaderValue Parse(string input) 141return (ContentRangeHeaderValue)GenericHeaderParser.ContentRangeParser.ParseValue(input, null, ref index); 144public static bool TryParse([NotNullWhen(true)] string? input, [NotNullWhen(true)] out ContentRangeHeaderValue? parsedValue) 151parsedValue = (ContentRangeHeaderValue)output!; 350ContentRangeHeaderValue result = new ContentRangeHeaderValue();
System\Net\Http\Headers\GenericHeaderParser.cs (1)
29internal static readonly GenericHeaderParser ContentRangeParser = new GenericHeaderParser(false, ContentRangeHeaderValue.GetContentRangeLength);
System\Net\Http\Headers\HttpContentHeaders.cs (2)
85public ContentRangeHeaderValue? ContentRange 87get { return (ContentRangeHeaderValue?)GetSingleParsedValue(KnownHeaders.ContentRange.Descriptor); }