DOT11_SSID (Structures)
Last changed: anonymous

.
Summary
Contains the SSID of an interface.

C# Definition:

        [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
        public struct DOT11_SSID
        {

        /// ULONG->unsigned int
        public uint uSSIDLength;

        /// UCHAR[]
        [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 32)]
        public string ucSSID;
        }

VB Definition:

     <StructLayout(LayoutKind.Sequential, CharSet := CharSet.Ansi)> _
     Public Structure DOT11_SSID

     ''' ULONG->unsigned int
     Public uSSIDLength As UInteger

     ''' UCHAR[]
     <MarshalAs(UnmanagedType.ByValTStr, SizeConst := 32)> _
     Public ucSSID As String
     End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation
DOT11_SSID on MSDN