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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









CacheItemPriorityserializable

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

Priorities are hints that can optimize cache scavenging. Essentially,
if the ASP.NET engine decides to remove cache items because memory is
scarce, it will remove items with a lower priority cost first. The
CacheItemPriority enumeration also includes a
NotRemovable member that you can use to prevent
ASP.NET from removing an object from the cache automatically when
memory is low.

public enum 

CacheItemPriority {

Low = 1 ,

BelowNormal = 2 ,

Normal = 3 ,

Default = 3 ,

AboveNormal = 4 ,

High = 5 ,

NotRemovable = 6
}



Hierarchy


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

Passed To


Cache.{Add( ), Insert( )}


/ 873