当前位置:  开发笔记 > 编程语言 > 正文

如何在c#中禁用/启用网络连接

如何解决《如何在c#中禁用/启用网络连接》经验,为你挑选了2个好方法。

基本上我正在运行一些性能测试,并且不希望外部网络成为阻力因素.我正在研究禁用网络局域网的方法.以编程方式执行此操作的有效方法是什么?我对c#感兴趣.如果有人有一个代码片段,可以驱动点回家很酷.



1> Melvyn..:

在搜索相同的东西时找到这个帖子,所以,这里是答案:)

我在C#中测试的最佳方法是使用WMI.

http://www.codeproject.com/KB/cs/EverythingInWmi02.aspx

msdn上的Win32_NetworkAdapter

C#Snippet :(必须在解决方案中引用System.Management,并使用声明)

SelectQuery wmiQuery = new SelectQuery("SELECT * FROM Win32_NetworkAdapter WHERE NetConnectionId != NULL");
ManagementObjectSearcher searchProcedure = new ManagementObjectSearcher(wmiQuery);
foreach (ManagementObject item in searchProcedure.Get())
{
    if (((string)item["NetConnectionId"]) == "Local Network Connection")
    {
       item.InvokeMethod("Disable", null);
    }
}


请注意,我必须以管理员身份运行它(当我将它作为peon运行时,InvokeMethod()没有返回错误).

2> 小智..:

使用netsh命令,您可以启用和禁用"本地连接"

  interfaceName is “Local Area Connection”.

  static void Enable(string interfaceName)
    {
     System.Diagnostics.ProcessStartInfo psi =
            new System.Diagnostics.ProcessStartInfo("netsh", "interface set interface \"" + interfaceName + "\" enable");
        System.Diagnostics.Process p = new System.Diagnostics.Process();
        p.StartInfo = psi;
        p.Start();
    }

    static void Disable(string interfaceName)
    {
        System.Diagnostics.ProcessStartInfo psi =
            new System.Diagnostics.ProcessStartInfo("netsh", "interface set interface \"" + interfaceName + "\" disable");
        System.Diagnostics.Process p = new System.Diagnostics.Process();
        p.StartInfo = psi;
        p.Start();
    }

推荐阅读
吻过彩虹的脸_378
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有