SecurityTokenProvider.CancelTokenCore(TimeSpan, SecurityToken) Method

Definition

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.

Applies to