NRack.Helpers.HeaderHash.ToHash C# (CSharp) Method

ToHash() public method

public ToHash ( ) : Hash
return Hash
        public Hash ToHash()
        {
            var convertedHash = new Hash();
            Each(pair => convertedHash[pair.Key] = GetHeaderValue(pair.Value));

            return convertedHash;
        }