Flatwhite.WebApi.OutputCacheAttribute.HashCacheKey C# (CSharp) Метод

HashCacheKey() защищенный Метод

Make a hash string of the original senstivive cacheKey
protected HashCacheKey ( string originalCacheKey ) : string
originalCacheKey string
Результат string
        protected virtual string HashCacheKey(string originalCacheKey)
        {
            return GetHashString(Encoding.ASCII.GetBytes(originalCacheKey));
        }