C# 클래스 SecurityControllers.Caching.SecurityCacheHelper

파일 보기 프로젝트 열기: wcpro/SecurityControllers

공개 메소드들

메소드 설명
Add ( bool o, string key, int minutes ) : void

Insert value into the cache using appropriate name/value pairs

Clear ( string key ) : void

Remove item from cache

Exists ( string key ) : bool

Check for item in cache

Get ( string key ) : bool

메소드 상세

Add() 공개 정적인 메소드

Insert value into the cache using appropriate name/value pairs
public static Add ( bool o, string key, int minutes ) : void
o bool Item to be cached
key string Name of item
minutes int
리턴 void

Clear() 공개 정적인 메소드

Remove item from cache
public static Clear ( string key ) : void
key string Name of cached item
리턴 void

Exists() 공개 정적인 메소드

Check for item in cache
public static Exists ( string key ) : bool
key string Name of cached item
리턴 bool

Get() 공개 정적인 메소드

public static Get ( string key ) : bool
key string
리턴 bool