Edit

Share via


SessionSecurityTokenHandler.ValidateSession(SessionSecurityToken) Method

Definition

Determines whether the session associated with the specified token is still valid. Validity is determined by checking the ValidFrom and ValidTo properties of the specified token. An exception is thrown if the session is no longer valid.

protected virtual void ValidateSession(System.IdentityModel.Tokens.SessionSecurityToken securityToken);

Parameters

securityToken
SessionSecurityToken

The token to be checked.

Exceptions

securityToken is null.

The ValidFrom property of the token is later than UtcNow.

The ValidTo property of the token is earlier than UtcNow.

Remarks

The token is not valid if its ValidFrom property is set to a value that occurs later than UtcNow, or if its ValidTo property is set to a value that occurs earlier than UtcNow.

Called from the ValidateToken methods to validate the session.

Applies to

Product Versions
.NET Framework 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1