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

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

最佳答案

使用LivePacketDeviceExtensions静态方法:

public static MacAddress GetMacAddress(this LivePacketDevice livePacketDevice)


它在PcapDotNet.Core.Extensions命名空间的PcapDotNet.Core.Extensions程序集中定义。

关于c# - 我如何在pcap.net中获取所选设备的MAC地址,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35730723/

10-09 09:29