如何在pcap.net中获取所选设备的MAC地址

时间:2016-03-01 18:35:16

标签: c# network-programming pcap.net

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

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

1 个答案:

答案 0 :(得分:3)

使用LivePacketDeviceExtensions静态方法:

public static MacAddress GetMacAddress(this LivePacketDevice livePacketDevice)

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