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

Get() public method

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

            return SendExpectData(Commands.Get, key);
        }

Same methods

RedisNativeClient::Get ( string key ) : byte[]
RedisNativeClient