C# Класс SecurityControllers.Caching.SecurityCacheHelper

Показать файл Открыть проект

Открытые методы

Метод Описание
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