SecurityTokenValidatedEventArgs Class
Provides data for the SecurityTokenValidated event.
Assembly: System.IdentityModel.Services (in System.IdentityModel.Services.dll)
System::EventArgs
System.ComponentModel::CancelEventArgs
System.IdentityModel.Services::SecurityTokenValidatedEventArgs
| Name | Description | |
|---|---|---|
![]() | SecurityTokenValidatedEventArgs(ClaimsPrincipal^) | Initializes a new instance of the SecurityTokenValidatedEventArgs class. |
| Name | Description | |
|---|---|---|
![]() | Cancel | Gets or sets a value indicating whether the event should be canceled.(Inherited from CancelEventArgs.) |
![]() | ClaimsPrincipal | Gets or sets the ClaimsPrincipal that results from token validation. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The event is raised just after the issued token that was received from the security token service (STS) is validated during sign-in. You can access the principal that was created during validation by using the ClaimsPrincipal property and either modify or replace it. You can set the Cancel property to cancel processing of the sign-in response message.
Available since 4.5
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


