SessionAuthenticationModule.IsReferenceMode Property

Definition

Gets or sets a value that specifies whether the session information (claim values, etc.) should be stored in the session cookie or whether the session content should be stored on the server side, using the cookie to store just a reference.

public:
 property bool IsReferenceMode { bool get(); void set(bool value); };
public bool IsReferenceMode { get; set; }
member this.IsReferenceMode : bool with get, set
Public Property IsReferenceMode As Boolean

Property Value

true if issued cookies are in reference mode; otherwise, false. The default is false, which specifies that issued cookies are not in reference mode.

Remarks

In reference mode, the SessionSecurityToken is stored in a server-side cache (an object that derives from SessionSecurityTokenCache). The issued cookie just contains a context identifier that is used to retrieve the token from the cache.

Important

To operate in reference mode, Microsoft recommends providing a handler for the WSFederationAuthenticationModule.SessionSecurityTokenCreated event in the global.asax.cs file and setting the SessionSecurityToken.IsReferenceMode property on the token passed in the SessionSecurityTokenCreatedEventArgs.SessionToken property. This will ensure that the session token operates in reference mode for every request and is favored over merely setting the SessionAuthenticationModule.IsReferenceMode property on the Session Authentication Module.

Applies to