ServiceStack.Redis.RedisClient.KillClients C# (CSharp) Method

KillClients() public method

public KillClients ( string fromAddress = null, string withId = null, RedisClientType ofType = null, bool skipMe = null ) : long
fromAddress string
withId string
ofType RedisClientType
skipMe bool
return long
        public long KillClients(string fromAddress = null, string withId = null, RedisClientType? ofType = null, bool? skipMe = null)
        {
            var typeString = ofType != null ? ofType.ToString().ToLower() : null;
            var skipMeString = skipMe != null ? (skipMe.Value ? "yes" : "no") : null;
            return base.ClientKill(addr: fromAddress, id: withId, type: typeString, skipMe: skipMeString);
        }