ClaimsIdentity.RemoveClaim Method (Claim)
Attempts to remove a claim from the claims identity.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- claim
-
Type:
System.Security.Claims.Claim
The claim to remove.
| Exception | Condition |
|---|---|
| InvalidOperationException | The claim cannot be removed. |
It is possible that the claim cannot be removed because it is not owned by the identity. For example, this would be the case for role claims that are owned by the principal. Unlike the TryRemoveClaim method, which returns a Boolean value that indicates whether the claim has been removed, RemoveClaim throws an exception if the claim could not be removed
The specified claim is matched by object reference (ReferenceEquals).
This method has the SecurityCritical attribute applied to control which entities can remove claims from the identity. Further down the pipe, authorization decisions are made based on the claims that are present in the Claims collection.
requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.
Available since 10
.NET Framework
Available since 4.5