代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
CSharp
】
获取网络适配器信息
作者:
zhanqi
/ 发布于
2011/7/7
/
468
1:NetworkInterface 类:该类位于 System.Net.NetworkInformation 命名空间 该类可以方便的检测本机有多少个网卡(网络适配器),网卡信息,哪些网络连接可用等。
<div> 1:<strong>NetworkInterface 类:</strong> 该类位于 System.Net.NetworkInformation 命名空间 该类可以方便的检测本机有多少个网卡(网络适配器),网卡信息,哪些网络连接可用等。 2:<strong>常用方法和属性:</strong> <div class="cnblogs_Highlighter"> <div id="highlighter_724999" class="syntaxhighlighter nogutter csharp"> <div class="bar "> <div class="toolbar"><a style="width: 16px; height: 16px" class="item viewSource" title="view source" href="http://www.cnblogs.com/zhanqi/archive/2011/04/04/2005214.html#viewSource">view source</a><a style="width: 16px; height: 16px" class="item printSource" title="print" href="http://www.cnblogs.com/zhanqi/archive/2011/04/04/2005214.html#printSource">print</a><a style="width: 16px; height: 16px" class="item about" title="?" href="http://www.cnblogs.com/zhanqi/archive/2011/04/04/2005214.html#about">?</a></div> </div> <div class="lines"> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">NetworkInterface[] adapters = NetworkInterface.GetAllNetworkInterfaces();</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp plain">Console.WriteLine("csharp string"><font color="#0000ff">"适配器个数:"</font> "csharp plain">+ adapters.Length);</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">Console.WriteLine();</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content"></td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp keyword"><strong><font color="#006699">foreach</font></strong> "csharp plain">(NetworkInterface adapter "csharp keyword"><strong><font color="#006699">in</font></strong> "csharp plain">adapters)</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp plain">{</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">Console.WriteLine("csharp string"><font color="#0000ff">"描述:"</font> "csharp plain">+ adapter.Description);</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp plain">Console.WriteLine("csharp string"><font color="#0000ff">"标识符:"</font> "csharp plain">+ adapter.Id);</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">Console.WriteLine("csharp string"><font color="#0000ff">"名称:"</font> "csharp plain">+ adapter.Name);</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp plain">Console.WriteLine("csharp string"><font color="#0000ff">"类型:"</font> "csharp plain">+ adapter.NetworkInterfaceType);</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">Console.WriteLine("csharp string"><font color="#0000ff">"速度:"</font> "csharp plain">+ adapter.Speed * 0.001 * 0.001 + "csharp string"><font color="#0000ff">"M"</font>"csharp plain">);</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp plain">Console.WriteLine("csharp string"><font color="#0000ff">"操作状态:"</font> "csharp plain">+ adapter.OperationalStatus);</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">Console.WriteLine("csharp string"><font color="#0000ff">"MAC 地址:"</font> "csharp plain">+ adapter.GetPhysicalAddress());</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content"></td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp comments"><font color="#008200">// 格式化</font></td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp plain">PhysicalAddress pa = adapter.GetPhysicalAddress();</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp keyword"><strong><font color="#006699">byte</font></strong>"csharp plain">[] bytes = pa.GetAddressBytes();</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp plain">StringBuilder sb = "csharp keyword"><strong><font color="#006699">new</font></strong> "csharp plain">StringBuilder();</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content"></td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp keyword"><strong><font color="#006699">for</font></strong> "csharp plain">("csharp keyword"><strong><font color="#006699">int</font></strong> "csharp plain">i = 0; i < bytes.Length; i++)</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">{</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp comments"><font color="#008200">// 以十六进制格式化</font></td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">sb.Append(bytes[i].ToString("csharp string"><font color="#0000ff">"X2"</font>"csharp plain">));</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp keyword"><strong><font color="#006699">if</font></strong> "csharp plain">(i != bytes.Length - 1)</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">{</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp plain">sb.Append("csharp string"><font color="#0000ff">"-"</font>"csharp plain">);</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">}</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp plain">}</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">Console.WriteLine("csharp string"><font color="#0000ff">"MAC 地址:"</font> "csharp plain">+ sb);</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp plain">Console.WriteLine();</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">}</td> </tr> </tbody> </table> </div> </div> </div> </div> 3:<strong>板载网卡:</strong> <div style="color: green" class="mycode"> <pre> 描述:Realtek PCIe GBE Family Controller 标识符:{AEDA3FF2-F692-4F18-8708-AC7FBBAEC6E2} 名称:本地连接 类型:Ethernet 速度:100M 操作状态:Up MAC 地址:B8AC6F539CE9 MAC 地址:B8-AC-6F-53-9C-E9 </pre> </div> 4:<strong>无线网卡:</strong> <div style="color: green" class="mycode"> <pre> 描述:Atheros AR9285 Wireless Network Adapter 标识符:{63361D79-3B9B-4680-91FA-DD556D5E01FF} 名称:无线网络连接 类型:Wireless80211 速度:150M 操作状态:Down MAC 地址:0017C4EBF741 MAC 地址:00-17-C4-EB-F7-41 </pre> </div> </div>
试试其它关键字
网络适配器
同语言下
.
文件IO 操作类库
.
Check图片类型[JPEG(.jpg 、.jpeg),TIF,GIF,BMP,PNG,P
.
机器名和IP取得(IPV4 IPV6)
.
Tiff转换Bitmap
.
linqHelper
.
MadieHelper.cs
.
RegHelper.cs
.
如果关闭一个窗体后激活另一个窗体的事件或方法
.
创建日志通用类
.
串口辅助开发类
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
zhanqi
贡献的其它代码
(
2
)
.
获取网络适配器信息
.
检测网络资源是否有效
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3