Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

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:
© 2017 Microsoft