namespace Disco.Client.Interop.Native { /// /// The WLAN_INTERFACE_STATE enumerated type indicates the state of an interface. /// Windows XP with SP3 and Wireless LAN API for Windows XP with SP2:  Only the wlan_interface_state_connected, /// wlan_interface_state_disconnected, and wlan_interface_state_authenticating values are supported. /// public enum WLAN_INTERFACE_STATE { /// /// The interface is not ready to operate. /// wlan_interface_state_not_ready = 0, /// /// The interface is connected to a network. /// wlan_interface_state_connected = 1, /// /// The interface is the first node in an ad hoc network. No peer has connected. /// wlan_interface_state_ad_hoc_network_formed = 2, /// /// The interface is disconnecting from the current network. /// wlan_interface_state_disconnecting = 3, /// /// The interface is not connected to any network. /// wlan_interface_state_disconnected = 4, /// /// The interface is attempting to associate with a network. /// wlan_interface_state_associating = 5, /// /// Auto configuration is discovering the settings for the network. /// wlan_interface_state_discovering = 6, /// /// The interface is in the process of authenticating. /// wlan_interface_state_authenticating = 7, } }