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

Ping() public method

public Ping ( ) : bool
return bool
        public bool Ping()
        {
            return SendExpectCode(Commands.Ping) == "PONG";
        }
RedisNativeClient