ServiceStack.Redis.RedisNativeClient.GetBytes C# (CSharp) Method

GetBytes() public method

public GetBytes ( string key ) : byte[]
key string
return byte[]
        public byte[] GetBytes(string key)
        {
            if (key == null)
                throw new ArgumentNullException("key");

            return SendExpectData(Commands.Get, key.ToUtf8Bytes());
        }
RedisNativeClient