Click or drag to resize

AuthenticationHandler Methods

The AuthenticationHandler type exposes the following members.

Methods
  Name Description
Protected method ApplyResponseChallengeAsync Override this method to deal with 401 challenge concerns, if an authentication scheme in question deals an authentication interaction as part of it's request flow. (like adding a response header, or changing the 401 result to 302 of a login page or external sign-in location.)
(Inherited from AuthenticationHandler)
Protected method ApplyResponseCoreAsync Core method that may be overridden by handler. The default behavior is to call two common response activities, one that deals with sign-in/sign-out concerns, and a second to deal with 401 challenges.
(Inherited from AuthenticationHandler)
Protected method ApplyResponseGrantAsync Override this method to dela with sign-in/sign-out concerns, if an authentication scheme in question deals with grant/revoke as part of it's request flow. (like setting/deleting cookies)
(Inherited from AuthenticationHandler)
Public method AuthenticateAsync Causes the authentication logic in AuthenticateCore to be performed for the current request at most once and returns the results. Calling Authenticate more than once will always return the original value. This method should always be called instead of calling AuthenticateCore directly.
(Inherited from AuthenticationHandler)
Protected method AuthenticateCoreAsync The core authentication logic which must be provided by the handler. Will be invoked at most once per request. Do not call directly, call the wrapping Authenticate method instead.
(Overrides AuthenticationHandler.AuthenticateCoreAsync)
Protected method BaseInitializeAsync
(Inherited from AuthenticationHandler)
Public method Static member ClearAuthorizationCache Clears any cached authorizations for the specified sessionID.
Public method Equals Determines whether the specified object is equal to the current object.
(Inherited from Object)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Protected method GenerateCorrelationId(AuthenticationProperties)
(Inherited from AuthenticationHandler)
Protected method GenerateCorrelationId(ICookieManager, AuthenticationProperties)
(Inherited from AuthenticationHandler)
Public method GetHashCode Serves as the default hash function.
(Inherited from Object)
Public method GetType Gets the Type of the current instance.
(Inherited from Object)
Protected method InitializeCoreAsync
(Inherited from AuthenticationHandler)
Public method InvokeAsync Called once by common code after initialization. If an authentication middle-ware responds directly to specifically known paths it must override this virtual, compare the request path to it's known paths, provide any response information as appropriate, and true to stop further processing.
(Overrides AuthenticationHandler.InvokeAsync)
Protected method MemberwiseClone Creates a shallow copy of the current Object.
(Inherited from Object)
Protected method TeardownCoreAsync
(Inherited from AuthenticationHandler)
Public method ToString Returns a string that represents the current object.
(Inherited from Object)
Public method Static member TryGetPrincipal Attempt to get current security principal for specified sessionID.
Protected method ValidateCorrelationId(AuthenticationProperties, ILogger)
(Inherited from AuthenticationHandler)
Protected method ValidateCorrelationId(ICookieManager, AuthenticationProperties, ILogger)
(Inherited from AuthenticationHandler)
Top
Extension Methods
  Name Description
Public Extension Method GetEnumValueOrDefault Gets the enumeration constant for value, if defined in the enumeration, or a default value.
(Defined by EnumExtensions)
Public Extension Method GetEnumValueOrDefaultT Gets the enumeration constant for this value, if defined in the enumeration, or a default value.
(Defined by EnumExtensions)
Top
See Also