本文整理汇总了C#中System.Security.Claims.ClaimsPrincipal.IsUserType方法的典型用法代码示例。如果您正苦于以下问题:C# ClaimsPrincipal.IsUserType方法的具体用法?C# ClaimsPrincipal.IsUserType怎么用?C# ClaimsPrincipal.IsUserType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Security.Claims.ClaimsPrincipal
的用法示例。
在下文中一共展示了ClaimsPrincipal.IsUserType方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MultipleUserTypeClaimsShouldMatchAllTypes
public void MultipleUserTypeClaimsShouldMatchAllTypes()
{
var principal = new ClaimsPrincipal(new ClaimsIdentity(new[]
{
new Claim(AllReady.Security.ClaimTypes.UserType, "SiteAdmin"),
new Claim(AllReady.Security.ClaimTypes.UserType, "OrgAdmin"),
new Claim(AllReady.Security.ClaimTypes.UserType, "BasicUser")
}));
Assert.True(principal.IsUserType(UserType.SiteAdmin));
Assert.True(principal.IsUserType(UserType.OrgAdmin));
Assert.True(principal.IsUserType(UserType.BasicUser));
}
示例2: MultipleUserTypeClaimsShouldMatchAllTypes
public void MultipleUserTypeClaimsShouldMatchAllTypes()
{
ClaimsPrincipal principal = new ClaimsPrincipal(
new ClaimsIdentity(
new[]
{
new Claim(AllReady.Security.ClaimTypes.UserType, "SiteAdmin"),
new Claim(AllReady.Security.ClaimTypes.UserType, "TenantAdmin"),
}
));
Assert.True(principal.IsUserType(UserType.SiteAdmin));
Assert.True(principal.IsUserType(UserType.TenantAdmin));
}
示例3: GetOrganizations
public IEnumerable<SelectListItem> GetOrganizations(ClaimsPrincipal user)
{
// Default to authorizing the return of no organizations
var listOfOrganizations = new List<SelectListItem>();
if (user.IsUserType(UserType.SiteAdmin))
{
listOfOrganizations = GetOrganizationsForSiteAdmin();
}
else if (user.IsUserType(UserType.OrgAdmin))
{
listOfOrganizations = GetOrganizationForOrgAdmin(user);
}
return listOfOrganizations;
}
示例4: OrganizationAdminUserShouldNotMatchSiteAdmin
public void OrganizationAdminUserShouldNotMatchSiteAdmin()
{
ClaimsPrincipal principal = new ClaimsPrincipal(
new ClaimsIdentity(
new[]
{
new Claim(AllReady.Security.ClaimTypes.UserType, "OrgAdmin")
}
));
Assert.False(principal.IsUserType(UserType.SiteAdmin));
}
示例5: SiteAdminUserShouldMatchSiteAdmin
public void SiteAdminUserShouldMatchSiteAdmin()
{
ClaimsPrincipal principal = new ClaimsPrincipal(
new ClaimsIdentity(
new[]
{
new Claim(AllReady.Security.ClaimTypes.UserType, "SiteAdmin")
}
));
Assert.True(principal.IsUserType(UserType.SiteAdmin));
}
示例6: For
public bool For(ClaimsPrincipal user, AllReadyTask task, UserManager<ApplicationUser> userManager)
{
var userId = userManager.GetUserId(user);
if (user.IsUserType(UserType.SiteAdmin))
{
return true;
}
if (user.IsUserType(UserType.OrgAdmin))
{
//TODO: Modify to check that user is organization admin for organization of task
return true;
}
if (task.Event?.Organizer != null && task.Event.Organizer.Id == userId)
{
return true;
}
if (task.Event?.Campaign?.Organizer != null && task.Event.Campaign.Organizer.Id == userId)
{
return true;
}
return false;
}
示例7: OrganizationAdminUserShouldMatchOrganizationAdmin
public void OrganizationAdminUserShouldMatchOrganizationAdmin()
{
var principal = new ClaimsPrincipal(new ClaimsIdentity(new[] { new Claim(AllReady.Security.ClaimTypes.UserType, "OrgAdmin") }));
Assert.True(principal.IsUserType(UserType.OrgAdmin));
}
示例8: UserWithNoUserTypeClaimShouldNotMatchSiteAdmin
public void UserWithNoUserTypeClaimShouldNotMatchSiteAdmin()
{
var principal = new ClaimsPrincipal();
Assert.False(principal.IsUserType(UserType.SiteAdmin));
}