RenewedSecurityTokenHandler Delegate

 

The delegate when implemented is called before a renewed token is returned to the client.

Namespace:   System.ServiceModel.Security.Tokens
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public delegate void RenewedSecurityTokenHandler(
	SecurityToken^ newSecurityToken,
	SecurityToken^ oldSecurityToken
)

Parameters

newSecurityToken
Type: System.IdentityModel.Tokens::SecurityToken^

The renewed token.

oldSecurityToken
Type: System.IdentityModel.Tokens::SecurityToken^

The expired security token.

The client makes renewal requests for a token when the token is about to expire. The delegate provides an extensibility point to inspect the token being renewed.

.NET Framework
Available since 3.0
Return to top
Show: