Tagged Questions
IsInRole is a method of the WindowsPrincipal class found in the System.Security.Principal namespace of Microsoft's .NET framework. It has several overloads and returns a boolean value that indicates if the principal object is member of a particular group.
2
votes
3answers
5k views
WindowsPrincipal.IsInRole and universal vs. global active directory groups
Does anybody know how to make WindowsPrincipal.IsInRole("domain\role") work with active directory universal groups?
Let's say the current user is a member of a group called Role in a domain called ...
1
vote
1answer
83 views
WindowsPrincipal.IsInRole not working in IIS 7/Win Server 2K8, but working on IIS 6/Win Server 2K3
Is there some setting or permission in IIS 7/Win Server 2008 that would cause WindowsPrincipal.IsInRole to always return false, when the same code running in IIS 6/Win Server 2003 works? Here's how ...
1
vote
4answers
139 views
How do I find out if an arbitrary DOMAIN\username is in a specific role with C#?
I'm really new to C# so forgive my ignorance. I need to test if a user (DOMAIN\username) is in a particular group, and yes, this includes nested groups.
I have found that WindowsPrincipal.IsInRole() ...
0
votes
0answers
197 views
WindowsPrincipal.IsInRole() not checking against distribution list with public folders
I am facing an issue while authorizing users against roles from AD.
If my DL (which are all Security Groups) does not have public folders enabled, my authorization works fine. However DL's which ...
0
votes
1answer
324 views
Verify logged in user against exchange distribution list or AD groups in c#
I am trying to verify whether the logged in user exists in a AD group or distribution list. I tried to use WindowsIdentity but that does not give me proper results. If I add a user to the DL and then ...
0
votes
2answers
505 views
How does IPrincipal gets its roles?
I need to get know how SiteMapProvider.IsAccessibleToUser() works.
Built-in XmlSiteMapProvider calls HttpContext.User.IsInRole() which uses System.Security.Principal.GenericPrincipal in case of forms ...
0
votes
1answer
670 views
How to use IsInRole from ASP.NET Membership in the Library dll
Most Real world web applications have at least one dll library behind them. If we use the ASP.NET membership provider, how can we call the Roles.IsInRole method in the dll?
The possibility of ...