WlanGetProfileList (wlanapi)
Last changed: -130.225.243.84

.
Summary
TODO - a short description

C# Signature:

[DllImport("Wlanapi.dll", SetLastError = true)]
public static extern uint WlanGetProfileList(IntPtr hClientHandle,ref Guid pInterfaceGuid,IntPtr pReserved, ref IntPtr ppProfileList);

VB Signature:

Declare Function WlanGetProfileList Lib "wlanapi.dll" (TODO) As TODO

User-Defined Types:

WLAN_PROFILE_INFO_LIST

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

IntPtr ppProfileList = new IntPtr();
WlanGetProfileList(ClientHandle, ref pInterfaceGuid, new IntPtr(), ref ppProfileList);
WLAN_PROFILE_INFO_LIST wlanProfileInfoList = new WLAN_PROFILE_INFO_LIST(ppProfileList);

Documentation