当前位置:  开发笔记 > 后端 > 正文

如何检索用户所属的所有角色(组)?

如何解决《如何检索用户所属的所有角色(组)?》经验,为你挑选了3个好方法。

有没有办法获取Windows身份验证用户所在的角色列表,而无需通过WindowsPrincipal.IsInRole方法明确检查?



1> joshperry..:

WindowsPrincipal.IsInRole只检查用户是否是具有该名称的组的成员; Windows组是一个角色.您可以从WindowsIdentity.Groups属性中获取用户所属的组列表.

你可以WindowsIdentity从你的WindowsPrincipal:

WindowsIdentity identity = WindowsPrincipal.Identity as WindowsIdentity;

或者您可以从WindowsIdentity上的工厂方法获取它:

WindowsIdentity identity = WindowsIdentity.GetCurrent();

WindowsIdenity.Groups是一个集合IdentityReference,它只给你组的SID.如果您需要组名,则需要将其转换IdentityReference为a NTAccount并获取值:

var groupNames = from id in identity.Groups
                 select id.Translate(typeof(NTAccount)).Value;


我用`var identity = User.Identity作为WindowsIdentity;`

2> Steve Willco..:

编辑:乔希打败了我!:)

试试这个

using System;
using System.Security.Principal;

namespace ConsoleApplication5
{
    internal class Program
    {
        private static void Main(string[] args)
        {
            var identity = WindowsIdentity.GetCurrent();

            foreach (var groupId in identity.Groups)
            {
                var group = groupId.Translate(typeof (NTAccount));
                Console.WriteLine(group);
            }
        }
    }
}



3> 小智..:

如果未连接到域服务器,该Translate函数可能会抛出以下异常The trust relationship between this workstation and the primary domain failed.

但是对于大多数人来说,它会没问题,所以我使用:

foreach(var s in WindowsIdentity.GetCurrent().Groups) {
    try {
        IdentityReference grp = s.Translate(typeof (NTAccount)); 
        groups.Add(grp.Value);
    }
    catch(Exception) {  }
}

推荐阅读
跟我搞对象吧
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有