本文整理汇总了C#中UserAccount.GetClaimValues方法的典型用法代码示例。如果您正苦于以下问题:C# UserAccount.GetClaimValues方法的具体用法?C# UserAccount.GetClaimValues怎么用?C# UserAccount.GetClaimValues使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserAccount
的用法示例。
在下文中一共展示了UserAccount.GetClaimValues方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TypeNotInList_ReturnsEmptyCollection
public void TypeNotInList_ReturnsEmptyCollection()
{
var sub = new UserAccount();
sub.Claims = new UserClaim[]{
new UserClaim{Type="type1", Value="a"},
new UserClaim{Type="type1", Value="b"},
new UserClaim{Type="type2", Value="c"},
};
var result = sub.GetClaimValues("type");
Assert.AreEqual(0, result.Count());
}
示例2: NullType_Throws
public void NullType_Throws()
{
var sub = new UserAccount();
sub.GetClaimValues(null);
}
示例3: EmptyType_Throws
public void EmptyType_Throws()
{
var sub = new UserAccount();
sub.GetClaimValues("");
}
示例4: TypeInList_ReturnsCurrentValues
public void TypeInList_ReturnsCurrentValues()
{
var sub = new UserAccount();
sub.Claims = new UserClaim[]{
new UserClaim{Type="type1", Value="a"},
new UserClaim{Type="type1", Value="b"},
new UserClaim{Type="type2", Value="c"},
};
var result = sub.GetClaimValues("type1");
Assert.AreEqual(2, result.Count());
CollectionAssert.AreEquivalent(new string[] { "a", "b" }, result.ToArray());
}