icinga-powershell-framework/lib/core/tools/Close-IcingaTcpConnection.psm1

14 lines
208 B
PowerShell

function Close-IcingaTcpConnection()
{
param(
$TcpClient
);
if ($null -eq $TcpClient) {
return;
}
$TcpClient.Close();
$TcpClient.Dispose();
$TcpClient = $null;
}