12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
-
- namespace iiie.CacheControl.Business.OutputCache
- {
- public class FileOuputCache : IOutputCache
- {
- public void RemoveStartsWith(string key)
- {
- throw new NotImplementedException();
- }
-
- public T Get<T>(string key) where T : class
- {
- throw new NotImplementedException();
- }
-
- public object Get(string key)
- {
- throw new NotImplementedException();
- }
-
- public void Remove(string key)
- {
- throw new NotImplementedException();
- }
-
- public bool Contains(string key)
- {
- throw new NotImplementedException();
- }
-
- public void Add(string key, object o, string dependsOnKey = null)
- {
- throw new NotImplementedException();
- }
-
- public IEnumerable<string> AllKeys { get; private set; }
- }
- }
|