SessionSecurityTokenCreatedEventArgs Class
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.
Provides data for the SessionSecurityTokenCreated event and for the SessionSecurityTokenCreated event.
public ref class SessionSecurityTokenCreatedEventArgs : EventArgs
public class SessionSecurityTokenCreatedEventArgs : EventArgs
type SessionSecurityTokenCreatedEventArgs = class
inherit EventArgs
Public Class SessionSecurityTokenCreatedEventArgs
Inherits EventArgs
- Inheritance
Remarks
By default:
In the session authentication module (SAM) the SessionSecurityTokenCreated event is raised from within the SessionAuthenticationModule.OnAuthenticateRequest method after a session token (SessionSecurityToken) has been created. This happens, for example, if an event handler for the SessionSecurityTokenReceived event modifies the token. You can use the SessionSecurityTokenCreatedEventArgs to modify the session token before it is passed further along the pipeline and is used to authenticate the entity making the request (user).
In the WS-Federation authentication module (WSFAM), the SessionSecurityTokenCreated event is raised from the request processing pipeline just after a session token has been created from the WS-Federation sign-in response message received from the STS and just before the SAM is called to set the thread principal and write the session cookie.
You can use the SessionToken property to modify or replace the token. You can set the WriteSessionCookie to specify whether the session cookie should be written (or re-written).
Constructors
SessionSecurityTokenCreatedEventArgs(SessionSecurityToken) |
Initializes a new instance of the SessionSecurityTokenCreatedEventArgs class by using the specified session security token. |
Properties
SessionToken |
Gets or sets the session security token that was created. |
WriteSessionCookie |
Gets or sets a value that indicates whether a cookie should be written in the response. |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |