LanDiscovery.LanDiscoveryManager.getArpScanResults C# (CSharp) Method

getArpScanResults() private method

Get the list of machines which responded to the arp request.
private getArpScanResults ( ) : List
return List
        private List<IPAddress> getArpScanResults()
        {
            using (arpScanner_m = new ArpScanner())
            {
                return arpScanner_m.GetRespondingMachines();
            } // end using
        }