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