IssuedSecurityTokenHandler Delegate

Definition

This delegate points to a method that when implemented will be called by the Authenticators before the token is issued to the client.

public delegate void IssuedSecurityTokenHandler(SecurityToken ^ issuedToken, EndpointAddress ^ tokenRequestor);
public delegate void IssuedSecurityTokenHandler(SecurityToken issuedToken, EndpointAddress tokenRequestor);
type IssuedSecurityTokenHandler = delegate of SecurityToken * EndpointAddress -> unit
Public Delegate Sub IssuedSecurityTokenHandler(issuedToken As SecurityToken, tokenRequestor As EndpointAddress)

Parameters

issuedToken
SecurityToken

The token to be issued to the client.

tokenRequestor
EndpointAddress

The endpoint for which the token is requested. This is the endpoint to which the client will present the issued token.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to