System.Net.IPAddressExtensions.SendArpRequestAsync C# (CSharp) Method

SendArpRequestAsync() public static method

Sends a request via ARP to resolve an IP address to aphysical address. If the physical address is already cached, it's cached value is returned.
public static SendArpRequestAsync ( this destination ) : Task
destination this Destination .
return Task
        public static Task<ArpRequestResult> SendArpRequestAsync(this IPAddress destination) => ArpRequest.SendAsync(destination);