IConfigurationEventHandlerContextAware<T> Interface

Definition

Defines event handlers for configuration retrieval and update operations.

public interface IConfigurationEventHandlerContextAware<T> : Microsoft.IdentityModel.Protocols.Configuration.IConfigurationEventHandler<T> where T : class
type IConfigurationEventHandlerContextAware<'T (requires 'T : null)> = interface
    interface IConfigurationEventHandler<'T (requires 'T : null)>
Public Interface IConfigurationEventHandlerContextAware(Of T)
Implements IConfigurationEventHandler(Of T)

Type Parameters

T

The type of configuration.

Implements

Methods

Name Description
AfterUpdateAsync(String, T, CancellationToken)

Called after a configuration has been successfully retrieved in a fire-and-forget manner.

(Inherited from IConfigurationEventHandler<T>)
AfterUpdateAsync(String, T, ConfigurationRetrievalContext, CancellationToken)

Called in a fire-and-forget manner after a configuration has been successfully retrieved.

BeforeRetrieveAsync(String, CancellationToken)

Called before retrieving configuration from the metadata endpoint.

(Inherited from IConfigurationEventHandler<T>)
BeforeRetrieveAsync(String, ConfigurationRetrievalContext, CancellationToken)

Called before retrieving configuration from the metadata endpoint.

Applies to