SecurityTokenProvider.CancelTokenCore(TimeSpan, SecurityToken) Method
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.
Cancels a security token.
protected:
virtual void CancelTokenCore(TimeSpan timeout, System::IdentityModel::Tokens::SecurityToken ^ token);
protected virtual void CancelTokenCore (TimeSpan timeout, System.IdentityModel.Tokens.SecurityToken token);
abstract member CancelTokenCore : TimeSpan * System.IdentityModel.Tokens.SecurityToken -> unit
override this.CancelTokenCore : TimeSpan * System.IdentityModel.Tokens.SecurityToken -> unit
Protected Overridable Sub CancelTokenCore (timeout As TimeSpan, token As SecurityToken)
Parameters
- timeout
- TimeSpan
A TimeSpan that specifies the timeout value for the message that cancels the security token.
- token
- SecurityToken
The SecurityToken to cancel.
Remarks
A security token that can be cancelled, such as one that is issued, allows a client that requested a security token to cancel it when it is done with it.
The CancelToken method calls CancelTokenCore method.
When the CancelTokenCore method is overridden and the security token passed into the token parameter cannot be canceled, throw the SecurityTokenException exception.