Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
SelectPrimaryIdentity()
static ClaimsIdentity System.Security.Claims.ClaimsPrincipal.SelectPrimaryIdentity
(
IEnumerable
<
ClaimsIdentity
>
identities
)
inline
static
private
inherited
Definition at line
111
of file
ClaimsPrincipal.cs
.
112
{
113
if
(
identities
==
null
)
114
{
115
throw
new
ArgumentNullException(
"identities"
);
116
}
117
foreach
(ClaimsIdentity identity
in
identities
)
118
{
119
if
(identity !=
null
)
120
{
121
return
identity;
122
}
123
}
124
return
null
;
125
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System
Security
Principal
WindowsPrincipal
Generated by
1.10.0