├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md └── Source ├── .editorconfig ├── Directory.Build.props ├── ManagedNativeWifi.Demo ├── Account.cs ├── ManagedNativeWifi.Demo.csproj ├── Program.cs └── Usage.cs ├── ManagedNativeWifi.Simple ├── App.config ├── ManagedNativeWifi.Simple.csproj ├── NativeWifi.cs ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── ManagedNativeWifi.Test ├── ManagedNativeWifi.Test.csproj ├── NativeWifiTest.cs └── ProfileDocumentTest.cs ├── ManagedNativeWifi.sln └── ManagedNativeWifi ├── ActionResult.cs ├── AuthenticationAlgorithm.cs ├── AuthenticationMethod.cs ├── AvailabilityChangedEventArgs.cs ├── AvailableNetworkInfo.cs ├── BssNetworkInfo.cs ├── BssType.cs ├── CipherAlgorithm.cs ├── Common ├── DisposableContainer.cs ├── HexadecimalHelper.cs └── NameHelper.cs ├── ConnectionChangedEventArgs.cs ├── ConnectionMode.cs ├── CurrentConnectionInfo.cs ├── EapXmlType.cs ├── EncryptionType.cs ├── InterfaceChangedEventArgs.cs ├── InterfaceInfo.cs ├── InterfaceState.cs ├── ManagedNativeWifi.csproj ├── NativeWifi.cs ├── NativeWifiPlayer.cs ├── NetworkIdentifier.cs ├── PhyType.cs ├── ProfileChangedEventArgs.cs ├── ProfileDocument.cs ├── ProfilePack.cs ├── ProfileType.cs ├── RadioInfo.cs ├── RadioStateChangedEventArgs.cs ├── RadioStateSet.cs ├── RealtimeConnectionQualityInfo.cs ├── ScanMode.cs ├── SignalQualityChangedEventArgs.cs └── Win32 ├── BaseMethod.cs ├── NativeMethod.cs └── SafeClientHandle.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/README.md -------------------------------------------------------------------------------- /Source/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/.editorconfig -------------------------------------------------------------------------------- /Source/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/Directory.Build.props -------------------------------------------------------------------------------- /Source/ManagedNativeWifi.Demo/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi.Demo/Account.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi.Demo/ManagedNativeWifi.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi.Demo/ManagedNativeWifi.Demo.csproj -------------------------------------------------------------------------------- /Source/ManagedNativeWifi.Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi.Demo/Program.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi.Demo/Usage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi.Demo/Usage.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi.Simple/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi.Simple/App.config -------------------------------------------------------------------------------- /Source/ManagedNativeWifi.Simple/ManagedNativeWifi.Simple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi.Simple/ManagedNativeWifi.Simple.csproj -------------------------------------------------------------------------------- /Source/ManagedNativeWifi.Simple/NativeWifi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi.Simple/NativeWifi.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi.Simple/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi.Simple/Program.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi.Simple/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi.Simple/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi.Test/ManagedNativeWifi.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi.Test/ManagedNativeWifi.Test.csproj -------------------------------------------------------------------------------- /Source/ManagedNativeWifi.Test/NativeWifiTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi.Test/NativeWifiTest.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi.Test/ProfileDocumentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi.Test/ProfileDocumentTest.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi.sln -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/ActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/ActionResult.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/AuthenticationAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/AuthenticationAlgorithm.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/AuthenticationMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/AuthenticationMethod.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/AvailabilityChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/AvailabilityChangedEventArgs.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/AvailableNetworkInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/AvailableNetworkInfo.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/BssNetworkInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/BssNetworkInfo.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/BssType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/BssType.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/CipherAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/CipherAlgorithm.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/Common/DisposableContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/Common/DisposableContainer.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/Common/HexadecimalHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/Common/HexadecimalHelper.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/Common/NameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/Common/NameHelper.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/ConnectionChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/ConnectionChangedEventArgs.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/ConnectionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/ConnectionMode.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/CurrentConnectionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/CurrentConnectionInfo.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/EapXmlType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/EapXmlType.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/EncryptionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/EncryptionType.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/InterfaceChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/InterfaceChangedEventArgs.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/InterfaceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/InterfaceInfo.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/InterfaceState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/InterfaceState.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/ManagedNativeWifi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/ManagedNativeWifi.csproj -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/NativeWifi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/NativeWifi.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/NativeWifiPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/NativeWifiPlayer.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/NetworkIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/NetworkIdentifier.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/PhyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/PhyType.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/ProfileChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/ProfileChangedEventArgs.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/ProfileDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/ProfileDocument.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/ProfilePack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/ProfilePack.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/ProfileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/ProfileType.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/RadioInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/RadioInfo.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/RadioStateChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/RadioStateChangedEventArgs.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/RadioStateSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/RadioStateSet.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/RealtimeConnectionQualityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/RealtimeConnectionQualityInfo.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/ScanMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/ScanMode.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/SignalQualityChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/SignalQualityChangedEventArgs.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/Win32/BaseMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/Win32/BaseMethod.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/Win32/NativeMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/Win32/NativeMethod.cs -------------------------------------------------------------------------------- /Source/ManagedNativeWifi/Win32/SafeClientHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emoacht/ManagedNativeWifi/HEAD/Source/ManagedNativeWifi/Win32/SafeClientHandle.cs --------------------------------------------------------------------------------