HttpRequestCachePolicy.Level Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
HttpRequestCacheLevel Bu örnek oluşturulduğunda belirtilen değeri alır.
public:
property System::Net::Cache::HttpRequestCacheLevel Level { System::Net::Cache::HttpRequestCacheLevel get(); };
public System.Net.Cache.HttpRequestCacheLevel Level { get; }
member this.Level : System.Net.Cache.HttpRequestCacheLevel
Public ReadOnly Property Level As HttpRequestCacheLevel
Özellik Değeri
HttpRequestCacheLevel Nesneler kullanılarak HttpWebRequest elde edilen kaynaklar için önbellek davranışını belirten bir değer.
Örnekler
Aşağıdaki kod örneği, bu özelliğin değerini görüntülemeyi gösterir.
static WebResponse^ GetResponseUsingCacheDefault( Uri^ uri )
{
// Set the default cache policy level for the "http:" scheme.
RequestCachePolicy^ policy = gcnew RequestCachePolicy;
// Create the request.
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;
}
public static WebResponse GetResponseUsingCacheDefault(Uri uri)
{
// Set the default cache policy level for the "http:" scheme.
RequestCachePolicy policy = new RequestCachePolicy();
// Create the request.
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;
}
Açıklamalar
Uygulamalar genellikle önbellek ilkesi düzeyi olarak kullanır Default . CachePolicy özelliği değilsenull
, bir istek için geçerli olan önbellek ilkesini belirler. Uygulama etki alanı için varsayılan ilke, özelliği kullanılarak veya makine ya da uygulama yapılandırma dosyalarındaki ayarlar tarafından DefaultCachePolicy ayarlanabilir. Daha fazla bilgi için bkz <. requestCaching> Öğesi (Ağ Ayarları).