Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

WLAN_INTERFACE_STATE (Enums)
 
.
Summary
Indicates the state of an interface.

C# Definition:

        /// <summary>
        /// Defines the state of the interface. e.g. connected, disconnected.
        /// </summary>
        public enum WLAN_INTERFACE_STATE
        {
        /// <summary>
        /// wlan_interface_state_not_ready -> 0
        /// </summary>
        wlan_interface_state_not_ready = 0,

        /// <summary>
        /// wlan_interface_state_connected -> 1
        /// </summary>
        wlan_interface_state_connected = 1,

        /// <summary>
        /// wlan_interface_state_ad_hoc_network_formed -> 2
        /// </summary>
        wlan_interface_state_ad_hoc_network_formed = 2,

        /// <summary>
        /// wlan_interface_state_disconnecting -> 3
        /// </summary>
        wlan_interface_state_disconnecting = 3,

        /// <summary>
        /// wlan_interface_state_disconnected -> 4
        /// </summary>
        wlan_interface_state_disconnected = 4,

        /// <summary>
        /// wlan_interface_state_associating -> 5
        /// </summary>
        wlan_interface_state_associating = 5,

        /// <summary>
        /// wlan_interface_state_discovering -> 6
        /// </summary>
        wlan_interface_state_discovering = 6,

        /// <summary>
        /// wlan_interface_state_authenticating -> 7
        /// </summary>
        wlan_interface_state_authenticating = 7,
        }

VB Definition:

     Public Enum WLAN_INTERFACE_STATE

     ''' wlan_interface_state_not_ready -> 0
     wlan_interface_state_not_ready = 0

     ''' wlan_interface_state_connected -> 1
     wlan_interface_state_connected = 1

     ''' wlan_interface_state_ad_hoc_network_formed -> 2
     wlan_interface_state_ad_hoc_network_formed = 2

     ''' wlan_interface_state_disconnecting -> 3
     wlan_interface_state_disconnecting = 3

     ''' wlan_interface_state_disconnected -> 4
     wlan_interface_state_disconnected = 4

     ''' wlan_interface_state_associating -> 5
     wlan_interface_state_associating = 5

     ''' wlan_interface_state_discovering -> 6
     wlan_interface_state_discovering = 6

     ''' wlan_interface_state_authenticating -> 7
     wlan_interface_state_authenticating = 7
     End Enum

Notes:

None.

Documentation
 

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it!

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions