如何将WLAN卡设置为流模式?

时间:2017-01-10 08:31:54

标签: networking streaming wlan

我有一个要求,即当设备之间发生数据传输时应禁用后台网络扫描,因为它会导致数据中断。当我通过互联网时,我通过打开Windows平板电脑/计算机上的WLAN卡的流模式找到了解决此问题的方法。它说下面的变量应该设置:

link_to "CSV", products_path(format: "csv")

但我不确定,我该怎么做?我不是网络人。

我有第三方软件(发现于:http://www.martin-majowski.de/)。但我不想依赖那个软件。相反,我想自己设置它或在我的WPF应用程序中自动化它(如果可能的话)。

非常感谢任何领导/答案。提前致谢。

1 个答案:

答案 0 :(得分:0)

经过探索,我找到了问题的答案。我们可以在异步连接后将WlanIntf​​Opcode.MediaStreamingMode操作码设置为true。

示例代码:

iface.ConnectSynchronously(Wlan.WlanConnectionMode.Profile, Wlan.Dot11BssType.Infrastructure, name, 5000);
iface.MediaStreaming = true;

其中:

public bool MediaStreaming
{
    get
    {
        return GetInterfaceInt(Wlan.WlanIntfOpcode.MediaStreamingMode) != 0;
    }
    set
    {
        SetInterfaceInt(Wlan.WlanIntfOpcode.MediaStreamingMode, value ? 1 : 0);
    }
}

希望它对某人有帮助。