RequestCachePolicy Class
.NET Framework 3.0
Defines an application's caching requirements for resources obtained by using WebRequest objects.
Namespace: System.Net.Cache
Assembly: System (in system.dll)
Assembly: System (in system.dll)
You can specify a default cache policy for your application by using the DefaultCachePolicy property or the application or machine configuration files. For more information, see requestCaching Element (Network Settings).
You can specify the cache policy for an individual request by using the CachePolicy property.
Caching for Web services is not supported.
The following code example creates a policy with Level set to CacheOnly, and uses it to set the cache policy of a WebRequest.
public static WebResponse GetResponseFromCache(Uri uri) { RequestCachePolicy policy = new RequestCachePolicy( RequestCacheLevel.CacheOnly); WebRequest request = WebRequest.Create(uri); request.CachePolicy = policy; WebResponse response = request.GetResponse(); Console.WriteLine("Policy level is {0}.", policy.Level.ToString()); Console.WriteLine("Is the response from the cache? {0}", response.IsFromCache); return response; }
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: