Flatwhite.WebApi.OutputCacheAttribute.HashCacheKey C# (CSharp) Method

HashCacheKey() protected method

Make a hash string of the original senstivive cacheKey
protected HashCacheKey ( string originalCacheKey ) : string
originalCacheKey string
return string
        protected virtual string HashCacheKey(string originalCacheKey)
        {
            return GetHashString(Encoding.ASCII.GetBytes(originalCacheKey));
        }