RequestCachePolicy Constructor (RequestCacheLevel)
.NET Framework (current version)
Initializes a new instance of the RequestCachePolicy class. using the specified cache policy.
Assembly: System (in System.dll)
Parameters
- level
-
Type:
System.Net.Cache::RequestCacheLevel
A RequestCacheLevel that specifies the cache behavior for resources obtained using WebRequest objects.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | level is not a valid RequestCacheLevel.value. |
This constructor initializes the Level property to level.
The RequestCacheLevel value controls whether caching is enabled, and when the cache can be used. For additional information, see the RequestCacheLevel documentation.
The following code example creates a policy with Level set to CacheOnly.and uses it to set the cache policy of a WebRequest.
static WebResponse^ GetResponseFromCache( Uri^ uri ) { RequestCachePolicy^ policy = gcnew RequestCachePolicy( RequestCacheLevel::CacheOnly ); WebRequest^ request = WebRequest::Create( uri ); request->CachePolicy = policy; WebResponse^ response = request->GetResponse(); Console::WriteLine( L"Policy level is {0}.", policy->Level ); Console::WriteLine( L"Is the response from the cache? {0}", response->IsFromCache ); return response; }
.NET Framework
Available since 2.0
Available since 2.0
Show: