如何在 pcap.net 中获取所选设备的 MAC 地址
How cab I get MAC address of a selected device in pcap.net
如何获取 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
程序集中定义。
如何获取 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
程序集中定义。