2 writes to _maxAge
Microsoft.Net.Http.Headers (2)
CacheControlHeaderValue.cs (2)
164
set {
_maxAge
= value; }
590
success = TrySetTimeSpan(nameValue, ref cc.
_maxAge
);
7 references to _maxAge
Microsoft.Net.Http.Headers (7)
CacheControlHeaderValue.cs (7)
163
get { return
_maxAge
; }
351
if (
_maxAge
.HasValue)
355
sb.Append(((int)
_maxAge
.GetValueOrDefault().TotalSeconds).ToString(NumberFormatInfo.InvariantInfo));
408
if ((_noCache != other._noCache) || (_noStore != other._noStore) || (
_maxAge
!= other.
_maxAge
) ||
451
result = result ^ (
_maxAge
.HasValue ?
_maxAge
.GetValueOrDefault().GetHashCode() ^ 1 : 0) ^