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

Dump() public method

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

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