Example #1
0
 public static RedisInt.Nullable Object(RedisObjectSubCommand subCommand, params string[] arguments)
 {
     object[] args = RedisArgs.Concat(subCommand.ToString().ToUpperInvariant(), arguments);
     return(new RedisInt.Nullable("OBJECT", args));
 }
Example #2
0
 public static RedisIntNull Object(RedisObjectSubCommand subCommand, params string[] arguments)
 {
     object[] args = RedisArgs.Concat(subCommand.ToString(), arguments);
     return(new RedisIntNull("OBJECT", args));
 }
 public long?Object(RedisObjectSubCommand subCommand, params string[] arguments)
 {
     return(Multi((client) => client.Object(subCommand, arguments)));
 }
 public Task <long?> Object(RedisObjectSubCommand subCommand, params string[] arguments)
 {
     return(Write(RedisCommand.Object(subCommand, arguments)));
 }