Skip to content
This repository was archived by the owner on Sep 29, 2024. It is now read-only.

Firewall

Sascha Manns edited this page Sep 6, 2024 · 1 revision

CheckIpAndPort

That method checks, if a given IP and a given port is accesable.

Usage

bool isAvailable = Firewall.CheckIpAndPort("127.0.0.1", 80);

The result value is a boolean, what represents if its available or not.

PingIp

Checks if a given IP is pingable.

Usage

bool isAvailable = Firewall.PingIp("127.0.0.1");

The result value is a boolean, what represents if its available or not.

Clone this wiki locally