ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] - نسخه متنی

G. andrew Duthie; matthew Macdonald

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید









HttpCacheRevalidationserializable

System.Web (system.web.dll)enum

This enumeration is used by the SetRevalidation( )
method of the HttpCachePolicy class, which
programmatically forces the revalidation of a page. If you use
ProxyCaches with this method, the page will be
dropped from all shared caches, but potentially left in the
client's local cache. (Technically, this sets the
"Cache-Control: proxy-revalidate"
HTTP header.) If you use AllCaches, the page will
be dropped from all caches. (Technically, this sets the
"Cache-Control: must-revalidate"
HTTP header.)

public enum 

HttpCacheRevalidation {

AllCaches = 1 ,

ProxyCaches = 2 ,

None = 3
}



Hierarchy


System.Object
System.ValueType
System.Enum(System.IComparable,
System.IFormattable
,
System.IConvertible)
HttpCacheRevalidation

Passed To


HttpCachePolicy.SetRevalidation( )


/ 873