You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415 |
- using iiie.CacheControl.DBO;
-
- namespace iiie.CacheControl.Business.OutputCache
- {
- public abstract class IOutputCache
- {
- public abstract CacheDbo Get(string key);
-
- public abstract void Remove(string key);
-
- public abstract bool Contains(string key);
-
- public abstract void Add(string key, CacheDbo o);
- }
- }
|