WlanGetProfile (wlanapi)
Last changed: -38.140.44.50

.
Summary
TODO - a short description

C# Signature:

[DllImport("wlanapi.dll", SetLastError = true)]
private static extern uint WlanGetProfile(
    [In] IntPtr clientHandle,
    [In, MarshalAs(UnmanagedType.LPStruct)] Guid interfaceGuid,
    [In, MarshalAs(UnmanagedType.LPWStr)] string profileName,
    [In] IntPtr pReserved,
    [Out, MarshalAs(UnmanagedType.LPWStr)] out string profileXml,
    [In, Out, Optional] ref WlanProfileFlags flags
    [Out, Optional] out WlanProfileAccessFlags pdwGrantedAccess
);

VB Signature:

Declare Function WlanGetProfile "wlanapi.dll" (TODO) As TODO

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

WlanGetProfile(ClientHandle, pInterfaceGuid, profileName, IntPtr.Zero, out profileXml, ref flags, out grantedAccess);

Documentation