public void GetClaims()
{
System.Security.Principal.IPrincipal ipl = System.Web.HttpContext.Current.User;
System.Security.Claims.ClaimsIdentity claimsIdentity = (System.Security.Claims.ClaimsIdentity)ipl.Identity;
foreach (System.Security.Claims.Claim oClaim in claimsIdentity.Claims)
{
Response.Write("ClaimType [" + oClaim.Type.ToLower() + "] has value [" + oClaim.Value + "]");
}
}
Showing posts with label Programmatically. Show all posts
Showing posts with label Programmatically. Show all posts
Wednesday, October 1, 2014
Get Claims Programmatically
And that's how you get all the claims for a user programmatically in .NET. Almost similar to my older post:
Subscribe to:
Posts (Atom)
-
Scenario: Updating the Master Page for SharePoint Online is not recommended by Microsoft now.....fine. So how do we change the UI then? And...
-
Microsoft introduced Office Graph a couple of months back which uses machine learning techniques to connect people to the relevant content,...
-
Recently my customers was looking for a solution where on-field guys can search for answers related to their tasks and it was a perfect scen...
Official SharePoint Documentation
I have recently contributed to the official SharePoint documentation for developement. Check it out here: https://docs.microsoft.com/en-us...