IssuedSecurityTokenHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.