public static void CheckIpAddressAccessibility()

in toolkit/Toolkit/SqlManagedInstanceToolkit.cs [143:153]


    public static void CheckIpAddressAccessibility(SqlString ipAddress, SqlInt32 port)
    {
        List<string> result = CheckIp(ipAddress.Value, port.Value);

        // Expose results.
        //
        foreach (var row in result)
        {
            SqlContext.Pipe.Send(row);
        }
    }