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

Watch() public method

public Watch ( ) : void
return void
        public void Watch(params string[] keys)
        {
            if (keys == null)
                throw new ArgumentNullException("keys");
            if (keys.Length == 0)
                throw new ArgumentException("keys");

            var cmdWithArgs = MergeCommandWithArgs(Commands.Watch, keys);

            SendExpectCode(cmdWithArgs);

        }
RedisNativeClient