using System;
namespace System.Net.Cache
{
/// Specifies the meaning of time values that control caching behavior for resources obtained using objects.
// Token: 0x02000130 RID: 304
public enum HttpCacheAgeControl
{
/// For internal use only. The Framework will throw an if you try to use this member.
// Token: 0x04000AD9 RID: 2777
None,
/// Content can be taken from the cache if the time remaining before expiration is greater than or equal to the time specified with this value.
// Token: 0x04000ADA RID: 2778
MinFresh,
/// Content can be taken from the cache until it is older than the age specified with this value.
// Token: 0x04000ADB RID: 2779
MaxAge,
///
/// and .
// Token: 0x04000ADC RID: 2780
MaxAgeAndMinFresh,
/// Content can be taken from the cache after it has expired, until the time specified with this value elapses.
// Token: 0x04000ADD RID: 2781
MaxStale,
///
/// and .
// Token: 0x04000ADE RID: 2782
MaxAgeAndMaxStale = 6
}
}