SecurityTokenReceivedEventArgs Class
Provides data for the WSFederationAuthenticationModule::SecurityTokenReceived event.
Assembly: System.IdentityModel.Services (in System.IdentityModel.Services.dll)
System::EventArgs
System.ComponentModel::CancelEventArgs
System.IdentityModel.Services::SecurityTokenReceivedEventArgs
| Name | Description | |
|---|---|---|
![]() | SecurityTokenReceivedEventArgs(SecurityToken^) | Initializes a new instance of the SecurityTokenReceivedEventArgs class by using the specified security token. |
![]() | SecurityTokenReceivedEventArgs(SecurityToken^, String^) | Initializes a new instance of the SecurityTokenReceivedEventArgs class by using the specified security token and sign-in context. |
| Name | Description | |
|---|---|---|
![]() | Cancel | Gets or sets a value indicating whether the event should be canceled.(Inherited from CancelEventArgs.) |
![]() | SecurityToken | Gets or sets the issued security token. |
![]() | SignInContext | Gets the sign-in context specified in the control. |
| 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 when an issued token is received from the security token service (STS) during sign-in using WS-Federation. It is raised before the token is validated. You can access the issued token through the SecurityToken property and modify its properties or replace it. You can cancel sign-in processing by setting the Cancel property.
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.


