static extern bool LogonUser(
     string principal,
     string authority,
     string password,
     LogonSessionType logonType,
     LogonProvider logonProvider,
     out IntPtr token);
Beispiel #2
0
 public static extern bool LogonUser(string lpszUserName, string lpszDomain, string lpszPassword, LogonSessionType logonType, LogonProvider logonProvider, out IntPtr phToken);
Beispiel #3
0
 private static extern bool LogonUser(string principal, string authority, string password, LogonSessionType logonType, LogonProvider logonProvider, out IntPtr token);