![]() | Basic Connection |
This example:
// Login to Check Point Management Web Service var session = await Session.Login( managementServer: ManagementServer, userName: Username, password: Password, certificateHash: CertificateHash ); // Get first 5 hosts var hosts = await session.FindHosts(limit: 5); foreach (var host in hosts) { Console.WriteLine(host.Name); } // Disconnect from server await session.Logout();