NSoft.NFramework.CacheRepositoryEx.RemoveAsync C# (CSharp) Method

RemoveAsync() public static method

비동기 방식으로 캐시에서 정보를 삭제합니다.
public static RemoveAsync ( this repository, string key ) : System.Threading.Tasks.Task
repository this
key string
return System.Threading.Tasks.Task
        public static Task RemoveAsync(this ICacheRepository repository, string key) {
            return Task.Factory.StartNew(() => repository.Remove(key));
        }