BCXAPI.Providers.DefaultMemoryCache.Remove C# (CSharp) Method

Remove() public method

public Remove ( string key ) : object
key string
return object
        public object Remove(string key)
        {
            return (object)System.Runtime.Caching.MemoryCache.Default.Remove(key);
        }
DefaultMemoryCache