当前位置: 编程技术>.net/c#/asp.net
C#实现获取MAC地址的方法
来源: 互联网 发布时间:2014-11-01
本文导语: 本文实例讲述了C#实现获取MAC地址的方法,是一个非常常见而且实用的功能,具体方法如下: 主要功能代码如下: /// /// 根据网卡类型来获取mac地址 /// /// 网卡类型 /// 格式化获取到的mac地址 /// 获取到的mac地址 public st...
本文实例讲述了C#实现获取MAC地址的方法,是一个非常常见而且实用的功能,具体方法如下:
主要功能代码如下:
/// /// 根据网卡类型来获取mac地址 /// /// 网卡类型 /// 格式化获取到的mac地址 /// 获取到的mac地址 public static string GetMacAddress(NetworkInterfaceType networkType, Func macAddressFormatHanlder) { string _mac = string.Empty; NetworkInterface[] _networkInterfaces = NetworkInterface.GetAllNetworkInterfaces(); foreach (NetworkInterface adapter in _networkInterfaces) { if (adapter.NetworkInterfaceType == networkType) { _mac = adapter.GetPhysicalAddress().ToString(); if (!String.IsNullOrEmpty(_mac)) break; } } if (macAddressFormatHanlder != null) _mac = macAddressFormatHanlder(_mac); return _mac; } /// /// 根据网卡类型以及网卡状态获取mac地址 /// /// 网卡类型 /// 网卡状态 ///Up 网络接口已运行,可以传输数据包。 ///Down 网络接口无法传输数据包。 ///Testing 网络接口正在运行测试。 ///Unknown 网络接口的状态未知。 ///Dormant 网络接口不处于传输数据包的状态;它正等待外部事件。 ///NotPresent 由于缺少组件(通常为硬件组件),网络接口无法传输数据包。 ///LowerLayerDown 网络接口无法传输数据包,因为它运行在一个或多个其他接口之上,而这些“低层”接口中至少有一个已关闭。 /// 格式化获取到的mac地址 /// 获取到的mac地址 public static string GetMacAddress(NetworkInterfaceType networkType, OperationalStatus status, Func macAddressFormatHanlder) { string _mac = string.Empty; NetworkInterface[] _networkInterfaces = NetworkInterface.GetAllNetworkInterfaces(); foreach (NetworkInterface adapter in _networkInterfaces) { if (adapter.NetworkInterfaceType == networkType) { if (adapter.OperationalStatus != status) continue; _mac = adapter.GetPhysicalAddress().ToString(); if (!String.IsNullOrEmpty(_mac)) break; } } if (macAddressFormatHanlder != null) _mac = macAddressFormatHanlder(_mac); return _mac; } /// /// 获取读到的第一个mac地址 /// /// 获取到的mac地址 public static string GetMacAddress(Func macAddressFormatHanlder) { string _mac = string.Empty; NetworkInterface[] _networkInterfaces = NetworkInterface.GetAllNetworkInterfaces(); foreach (NetworkInterface adapter in _networkInterfaces) { _mac = adapter.GetPhysicalAddress().ToString(); if (!string.IsNullOrEmpty(_mac)) break; } if (macAddressFormatHanlder != null) _mac = macAddressFormatHanlder(_mac); return _mac; }
有些项目中出于安全考虑需要获取MAC地址,然后再判断MAC地址是否合法才可以登陆。本文总结的方法希望对大家有所帮助!