码迷,mamicode.com
首页 > Windows程序 > 详细

验证域用户(C#)

时间:2017-05-02 13:50:22      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:help   rhel   code   domain   system   date   return   div   using   

代码如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;

namespace MACAddressMgmtApp.ServiceImplementations
{
    class ValidateUserHelper
    {

        private static int LOGon32_LOGon_INTERACTIVE = 2;
        private static int LOGon32_PROVIDER_DEFAULT = 0;
        private static IntPtr tokenHandle = new IntPtr(0);


        [DllImport("advapi32.dll")]
        private static extern bool LogonUser(string lpszUsername,
            string lpszDomain,
            string lpszPassword,
            int dwLogonType,
            int dwLogonProvider,
            ref IntPtr phToken);


        public static bool Verify(string userName, string pwd, string domain)
        {
            bool boolResult = false;
            tokenHandle = IntPtr.Zero;
            boolResult = LogonUser(userName, domain, pwd, LOGon32_LOGon_INTERACTIVE, LOGon32_PROVIDER_DEFAULT, ref tokenHandle);
            return boolResult;
        }

    }
}

 

验证域用户(C#)

标签:help   rhel   code   domain   system   date   return   div   using   

原文地址:http://www.cnblogs.com/QiuTianBaBa/p/6795369.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!