IssuedSecurityTokenHandler 委托
定义
该委托指向一种方法,实现时该方法将在令牌颁发给客户端之前由身份验证器调用。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)
参数
- 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.
- 继承
扩展方法
GetMethodInfo(Delegate) |
获取指示指定委托表示的方法的对象。Gets an object that represents the method represented by the specified delegate. |