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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









CacheItemRemovedReasonserializable

System.Web.Caching (system.web.dll)enum

If you have set a callback to occur when a cached item is removed,
you will be provided with a CacheItemRemovedReason
argument. The CacheItemRemovedReason will be
Expired if the sliding or absolute expiration time
interval passed, Removed if the object was removed
programmatically with the Cache.Remove( ) method
or by an Cache.Insert( ) method with the same key,
DependencyChanged if the object was invalidated
because of a dependency, or Underused if it has
been removed to free memory.

public enum 

CacheItemRemovedReason {

Removed = 1 ,

Expired = 2 ,

Underused = 3 ,

DependencyChanged = 4
}



Hierarchy


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

Passed To


CacheItemRemovedCallback.{BeginInvoke( ),
Invoke( )}


/ 873