3 instantiations of RangeConditionHeaderValue
System.Net.Http (3)
System\Net\Http\Headers\RangeConditionHeaderValue.cs (3)
128parsedValue = new RangeConditionHeaderValue(date); 132parsedValue = new RangeConditionHeaderValue(entityTag); 140return new RangeConditionHeaderValue(this);
10 references to RangeConditionHeaderValue
netstandard (1)
netstandard.cs (1)
1114[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.Http.Headers.RangeConditionHeaderValue))]
System.Net.Http (9)
System\Net\Http\Headers\GenericHeaderParser.cs (1)
24internal static readonly GenericHeaderParser RangeConditionParser = new GenericHeaderParser(false, RangeConditionHeaderValue.GetRangeConditionLength);
System\Net\Http\Headers\HttpRequestHeaders.cs (2)
137public RangeConditionHeaderValue? IfRange 139get { return (RangeConditionHeaderValue?)GetSingleParsedValue(KnownHeaders.IfRange.Descriptor); }
System\Net\Http\Headers\RangeConditionHeaderValue.cs (6)
36private RangeConditionHeaderValue(RangeConditionHeaderValue source) 47obj is RangeConditionHeaderValue other && 53public static RangeConditionHeaderValue Parse(string input) 56return (RangeConditionHeaderValue)GenericHeaderParser.RangeConditionParser.ParseValue( 60public static bool TryParse([NotNullWhen(true)] string? input, [NotNullWhen(true)] out RangeConditionHeaderValue? parsedValue) 67parsedValue = (RangeConditionHeaderValue)output!;