using System; using Cpp2IlInjected; namespace System.Net.Cache { /// Specifies caching behavior for resources obtained using and its derived classes. // Token: 0x0200030A RID: 778 [Token(Token = "0x200030A")] public enum RequestCacheLevel { /// Satisfies a request for a resource either by using the cached copy of the resource or by sending a request for the resource to the server. The action taken is determined by the current cache policy and the age of the content in the cache. This is the cache level that should be used by most applications. // Token: 0x04000D0B RID: 3339 [Token(Token = "0x4000D0B")] Default, /// Satisfies a request by using the server. No entries are taken from caches, added to caches, or removed from caches between the client and server. This is the default cache behavior specified in the machine configuration file that ships with the .NET Framework. // Token: 0x04000D0C RID: 3340 [Token(Token = "0x4000D0C")] BypassCache, /// Satisfies a request using the locally cached resource; does not send a request for an item that is not in the cache. When this cache policy level is specified, a exception is thrown if the item is not in the client cache. // Token: 0x04000D0D RID: 3341 [Token(Token = "0x4000D0D")] CacheOnly, /// Satisfies a request for a resource from the cache, if the resource is available; otherwise, sends a request for a resource to the server. If the requested item is available in any cache between the client and the server, the request might be satisfied by the intermediate cache. // Token: 0x04000D0E RID: 3342 [Token(Token = "0x4000D0E")] CacheIfAvailable, /// Satisfies a request by using the cached copy of the resource if the timestamp is the same as the timestamp of the resource on the server; otherwise, the resource is downloaded from the server, presented to the caller, and stored in the cache. // Token: 0x04000D0F RID: 3343 [Token(Token = "0x4000D0F")] Revalidate, /// Satisfies a request by using the server. The response might be saved in the cache. In the HTTP caching protocol, this is achieved using the cache control directive and the no-cache header. // Token: 0x04000D10 RID: 3344 [Token(Token = "0x4000D10")] Reload, /// Never satisfies a request by using resources from the cache and does not cache resources. If the resource is present in the local cache, it is removed. This policy level indicates to intermediate caches that they should remove the resource. In the HTTP caching protocol, this is achieved using the cache control directive. // Token: 0x04000D11 RID: 3345 [Token(Token = "0x4000D11")] NoCacheNoStore } }