我如何在 pcap.net 中获取所选设备的 MAC 地址
本文关键字:地址 MAC 获取 pcap net | 更新日期: 2023-09-27 18:36:53
如何在 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
程序集中定义。