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

Subscribe() public method

public Subscribe ( ) : byte[][]
return byte[][]
        public byte[][] Subscribe(params string[] toChannels)
        {
            if (toChannels.Length == 0)
                throw new ArgumentNullException("toChannels");

            var cmdWithArgs = MergeCommandWithArgs(Commands.Subscribe, toChannels);
            return SendExpectMultiData(cmdWithArgs);
        }
RedisNativeClient