4 references to MaxAgeHasValue
System.Net.Http (4)
System\Net\Http\Headers\CacheControlHeaderValue.cs (4)
97get => (_flags & Flags.MaxAgeHasValue) == 0 ? null : _maxAge; 98set => SetTimeSpan(ref _maxAge, Flags.MaxAgeHasValue, value); 220if ((_flags & Flags.MaxAgeHasValue) != 0) 422flagsToSet = Flags.MaxAgeHasValue;