@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Defines a basic service set (BSS) network type. !!!!C# Definition: /// <summary> /// Represents an 802.11 Basic Service Set type /// </summary> public enum DOT11_BSS_TYPE { ///<summary> /// dot11_BSS_type_infrastructure -> 1 ///</summary> dot11_BSS_type_infrastructure = 1, ///<summary> /// dot11_BSS_type_independent -> 2 ///</summary> dot11_BSS_type_independent = 2, ///<summary> /// dot11_BSS_type_any -> 3 ///</summary> dot11_BSS_type_any = 3, } !!!!VB Definition: Public Enum DOT11_BSS_TYPE ''' dot11_BSS_type_infrastructure -> 1 dot11_BSS_type_infrastructure = 1 ''' dot11_BSS_type_independent -> 2 dot11_BSS_type_independent = 2 ''' dot11_BSS_type_any -> 3 dot11_BSS_type_any = 3 End Enum !!!!Notes: None. Documentation: DOT11_BSS_TYPE@msdn on MSDN
Edit Enums.DOT11_BSS_TYPE
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.