1

如何在 pcap.net 中获取选定 LivePacketDevice 的 MAC 地址?

var allDevices = LivePacketDevice.AllLocalMachine;
LivePacketDevice dev = allDevices[0];
4

1 回答 1

4

使用LivePacketDeviceExtensions静态方法:

public static MacAddress GetMacAddress(this LivePacketDevice livePacketDevice)

它在命名空间中的PcapDotNet.Core.ExtensionsAssembly 中定义PcapDotNet.Core.Extensions

于 2016-03-05T07:47:36.783 回答