SecurityTokenProvider.EndCancelTokenCore(IAsyncResult) 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.
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
- result
- IAsyncResult
The IAsyncResult that is returned by a call to the BeginCancelTokenCore(TimeSpan, SecurityToken, AsyncCallback, Object) method.
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.