MyGit

v2.0.3

georg-jung/ArpLookup

版本发布时间: 2021-07-14 00:10:07

georg-jung/ArpLookup最新发布版本:v2.0.3(2021-07-14 00:10:07)

Breaking Changes

Upgrading

Change code that might be run on Windows and does something comparable to

try
{
    var x = Arp.Lookup(IPAddress.Parse("128.0.0.1"));
    // found
}
catch (Win32Exception ex)
when (ex.NativeErrorCode == 67)
{
    // not found
}

to something like

var x = Arp.Lookup(IPAddress.Parse("128.0.0.1"));
if (x == null)
{
    // not found
}
else
{
    // found
}

Changes:

This list of changes was auto generated.

相关地址:原始地址 下载(tar) 下载(zip)

1、 ArpLookup.2.0.3.nupkg 13.17KB

2、 ArpLookup.2.0.3.snupkg 25.38KB

查看:2021-07-14发行的版本