• 大小: 556KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-06-13
  • 语言: C#
  • 标签: C#  wifi  无线通讯  

资源简介

wifi无线通讯示例,微软提供。适用于wince手机,windowsmobile系统。语言为C#。

资源截图

代码片段和文件信息

using System;
using System.Runtime.InteropServices;
using System.Net.NetworkInformation;
using System.Text;
using System.Diagnostics;
using System.ComponentModel;

namespace NativeWifi
{
// TODO: Separate the functions and the structs/enums. Many of the structs/enums should remain public
// (since they‘re reused in the OOP interfaces) -- the rest (including all P/Invoke function mappings)
// should become internal.

// All structures which native methods rely on should be kept in the Wlan class.
// Only change the layout of those structures if it matches the native API documentation.
// Some structures might have helper properties but adding or changing fields is prohibited.
// This class is not documented since all the documentation resides in the MSDN. The code
// documentation only covers details which concern interop users.
// Some identifier names were modified to correspond to .NET naming conventions
// but otherwise retain their native meaning.

/// 
/// Defines the Native Wifi API through P/Invoke interop.
/// 

/// 
/// This class is intended for internal use. Use the  class instead.
/// 

public static class Wlan
{
#region P/Invoke API
/// 
/// Defines various opcodes used to set and query parameters for an interface.
/// 

/// 
/// Corresponds to the native WLAN_INTF_OPCODE type.
/// 

public enum WlanIntfOpcode
{
/// 
/// Opcode used to set or query whether auto config is enabled.
/// 

AutoconfEnabled = 1
/// 
/// Opcode used to set or query whether background scan is enabled.
/// 

BackgroundScanEnabled
/// 
/// Opcode used to set or query the media streaming mode of the driver.
/// 

MediaStreamingMode
/// 
/// Opcode used to set or query the radio state.
/// 

RadioState
/// 
/// Opcode used to set or query the BSS type of the interface.
/// 

BssType
/// 
/// Opcode used to query the state of the interface.
/// 

InterfaceState
/// 
/// Opcode used to query information about the current connection of the interface.
/// 

CurrentConnection
/// 
/// Opcose used to query the current channel on which the wireless interface is operating.
/// 

ChannelNumber
/// 
/// Opcode used to query the supported auth/cipher pairs for infrastructure mode.
/// 

SupportedInfrastructureAuthCipherPairs
/// 
/// Opcode used to query the supported auth/cipher pairs for ad hoc mode.
/// 

SupportedAdhocAuthCipherPairs
/// 
/// Opcode used to query the list of supported country or region strings.
/// 

S

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      59824  2007-10-14 19:42  Wifi通讯示例\Backup\Interop.cs

     文件       1997  2007-10-14 18:41  Wifi通讯示例\Backup\ManagedWifi.csproj

     文件       1508  2007-10-14 18:41  Wifi通讯示例\Backup\Properties\AssemblyInfo.cs

     文件      28943  2007-10-14 19:33  Wifi通讯示例\Backup\WlanApi.cs

     文件      59824  2007-10-14 19:42  Wifi通讯示例\Interop.cs

     文件       2168  2009-05-15 14:10  Wifi通讯示例\ManagedWifi.csproj

     文件        911  2009-05-15 14:17  Wifi通讯示例\ManagedWifi.sln

    ..A..H.      9216  2009-05-15 14:17  Wifi通讯示例\ManagedWifi.suo

     文件       1508  2007-10-14 18:41  Wifi通讯示例\Properties\AssemblyInfo.cs

     文件       1603  2009-05-15 14:10  Wifi通讯示例\UpgradeLog.xml

     文件      28943  2007-10-14 19:33  Wifi通讯示例\WlanApi.cs

     文件       3348  2009-05-15 14:10  Wifi通讯示例\_UpgradeReport_Files\UpgradeReport.css

     文件      12505  2008-01-11 01:25  Wifi通讯示例\_UpgradeReport_Files\UpgradeReport.xslt

     文件         69  2009-05-15 14:10  Wifi通讯示例\_UpgradeReport_Files\UpgradeReport_Minus.gif

     文件         71  2009-05-15 14:10  Wifi通讯示例\_UpgradeReport_Files\UpgradeReport_Plus.gif

     目录          0  2009-05-15 14:10  Wifi通讯示例\obj\Debug\TempPE

     目录          0  2009-05-15 14:10  Wifi通讯示例\Backup\Properties

     目录          0  2009-05-15 14:10  Wifi通讯示例\bin\Debug

     目录          0  2009-05-15 14:10  Wifi通讯示例\obj\Debug

     目录          0  2009-05-15 14:10  Wifi通讯示例\Backup

     目录          0  2009-05-15 14:10  Wifi通讯示例\bin

     目录          0  2009-05-15 14:10  Wifi通讯示例\obj

     目录          0  2007-10-14 18:41  Wifi通讯示例\Properties

     目录          0  2009-05-15 14:10  Wifi通讯示例\_UpgradeReport_Files

     目录          0  2009-05-15 14:17  Wifi通讯示例

     文件     616448  2008-05-09 15:11  使用 .NET Compact framework 2.0 生成 Wi-Fi 发现应用程序\Build_WiFi_Discover_App_NETCF2.msi

     文件         44  2008-05-12 11:35  使用 .NET Compact framework 2.0 生成 Wi-Fi 发现应用程序\使用说明.txt

     目录          0  2008-06-17 19:30  使用 .NET Compact framework 2.0 生成 Wi-Fi 发现应用程序

----------- ---------  ---------- -----  ----

               828930                    28

............此处省略1个文件信息

评论

共有 条评论