ClaimsPrincipal.HasClaim Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether any of the claims identities associated with this claims principal contains a claim that matches specified conditions.
Overloads
HasClaim(Predicate<Claim>) |
Determines whether any of the claims identities associated with this claims principal contains a claim that is matched by the specified predicate. |
HasClaim(String, String) |
Determines whether any of the claims identities associated with this claims principal contains a claim with the specified claim type and value. |
HasClaim(Predicate<Claim>)
- Source:
- ClaimsPrincipal.cs
- Source:
- ClaimsPrincipal.cs
- Source:
- ClaimsPrincipal.cs
Determines whether any of the claims identities associated with this claims principal contains a claim that is matched by the specified predicate.
public:
virtual bool HasClaim(Predicate<System::Security::Claims::Claim ^> ^ match);
public virtual bool HasClaim (Predicate<System.Security.Claims.Claim> match);
abstract member HasClaim : Predicate<System.Security.Claims.Claim> -> bool
override this.HasClaim : Predicate<System.Security.Claims.Claim> -> bool
Public Overridable Function HasClaim (match As Predicate(Of Claim)) As Boolean
Parameters
Returns
true
if a matching claim exists; otherwise, false
.
Exceptions
match
is null
.
Remarks
Each ClaimsIdentity is called.
See also
ClaimsIdentity.HasClaim(String, String).
Applies to
HasClaim(String, String)
- Source:
- ClaimsPrincipal.cs
- Source:
- ClaimsPrincipal.cs
- Source:
- ClaimsPrincipal.cs
Determines whether any of the claims identities associated with this claims principal contains a claim with the specified claim type and value.
public:
virtual bool HasClaim(System::String ^ type, System::String ^ value);
public virtual bool HasClaim (string type, string value);
abstract member HasClaim : string * string -> bool
override this.HasClaim : string * string -> bool
Public Overridable Function HasClaim (type As String, value As String) As Boolean
Parameters
- type
- String
The type of the claim to match.
- value
- String
The value of the claim to match.
Returns
true
if a matching claim exists; otherwise, false
.
Exceptions
type
or value
is null
.
Remarks
Does not check the Issuer or OriginalIssuer properties. The comparison is made using Ordinal, case sensitive on value; case in-sensitive on type.