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

get windows auth code

时间:2018-10-23 20:57:23      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:windows   sid   cat   public   cto   ring   ted   window   ret   

public static WindowsIdentityInfo GetWindowsIdentityInfo(HttpContext context)
        {
            WindowsIdentityInfo info = new WindowsIdentityInfo();
            info.IsAuthenticated = false;
            if (context==null)
            {
                WindowsPrincipal winPrincipal = (WindowsPrincipal)context.User;
                if (winPrincipal != null)
                {
                    info.IsAuthenticated = winPrincipal.Identity.IsAuthenticated;
                    info.UserName = winPrincipal.Identity.Name;
                    if (!string.IsNullOrEmpty(info.UserName))
                    {
                        string[] arr = info.UserName.Split(‘\\‘);
                        if (arr != null && arr.Length >= 2)
                        {
                            info.DisplayName = GetUserFullName(arr[0], arr[1]);
                        }
                    }
                    info.AuthenticationType = winPrincipal.Identity.AuthenticationType;
                }
            }
            return info;
        }

        private static string GetUserFullName(string domain, string userName)
        {
            DirectoryEntry userEntry = new DirectoryEntry("WinNT://" + domain + "/" + userName + ",User");
            return (string)userEntry.Properties["fullname"].Value;
        }

  

get windows auth code

标签:windows   sid   cat   public   cto   ring   ted   window   ret   

原文地址:https://www.cnblogs.com/yafeili/p/9838116.html

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