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

RPop() public method

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

            return SendExpectData(Commands.RPop, listId.ToUtf8Bytes());
        }
RedisNativeClient