icinga-powershell-framework/lib/web/Close-IcingaTCPConnection.psm1
2020-03-24 12:42:14 +01:00

14 lines
231 B
PowerShell

function Close-IcingaTCPConnection()
{
param(
[System.Net.Sockets.TcpClient]$Client = $null
);
if ($null -eq $Client) {
return;
}
$Client.Close();
$Client.Dispose();
$Client = $null;
}