SecurityTokenProvider.EndCancelTokenCore(IAsyncResult) Method

Definition

Completes an asynchronous operation to cancel a security token.

protected:
 virtual void EndCancelTokenCore(IAsyncResult ^ result);
protected virtual void EndCancelTokenCore (IAsyncResult result);
abstract member EndCancelTokenCore : IAsyncResult -> unit
override this.EndCancelTokenCore : IAsyncResult -> unit
Protected Overridable Sub EndCancelTokenCore (result As IAsyncResult)

Parameters

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.

When you inherit from the SecurityTokenProvider class you are not required to override the asynchronous methods, as the SecurityTokenProvider base class provides asynchronous support based upon the synchronous methods. Therefore, you are not required to override the EndCancelTokenCore method, unless you must provide your own asynchronous implementation.

The EndCancelToken method calls EndCancelTokenCore method.

Applies to