CheckPassword (coredll)
Last changed: -64.199.116.42

.
Summary
This function validates a password by checking a string to determine if it matches the current password.

C# Signature:

    [DllImport("coredll", EntryPoint = "CheckPassword")]
    [return: MarshalAs(UnmanagedType.Bool)]
    public static extern bool CheckPassword([MarshalAs(UnmanagedType.LPWStr)] string password);

VB Signature:

<DllImport("coredll", EntryPoint := "CheckPassword")> _

Public Shared Declare Function CheckPassword Lib "coredll" Alias "CheckPassword" (<MarshalAs(UnmanagedType.LPWStr)> password As String) As<MarshalAs(UnmanagedType.Bool)> Boolean

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation