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