public async Task <string> PingAsync(byte[] message)
        {
            ValidateNotDisposed();

            using var connection = new RedisConnection(_connectionSettings);
            var command = new Ping(connection.GetStream(), message);

            return(await command.ExecuteAsync());
        }