Show / Hide Table of Contents

Class OpenIddictValidationHandlerDescriptor

Represents an immutable descriptor of an OpenIddict validation event handler.

Inheritance
System.Object
OpenIddictValidationHandlerDescriptor
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: OpenIddict.Validation
Assembly: cs.temp.dll.dll
Syntax
public class OpenIddictValidationHandlerDescriptor

Properties

ContextType

Gets the context type associated with the event.

Declaration
public Type ContextType { get; }
Property Value
Type Description
Type

FilterTypes

Gets the list of filters responsible of excluding the handler from the activated handlers if it doesn't meet the criteria.

Declaration
public ImmutableArray<Type> FilterTypes { get; }
Property Value
Type Description
ImmutableArray<Type>

Order

Gets the order assigned to the handler.

Declaration
public int Order { get; }
Property Value
Type Description
System.Int32

ServiceDescriptor

Gets the service descriptor associated with the handler.

Declaration
public ServiceDescriptor ServiceDescriptor { get; }
Property Value
Type Description
ServiceDescriptor

Type

Gets the type associated with the handler.

Declaration
public OpenIddictValidationHandlerType Type { get; }
Property Value
Type Description
OpenIddictValidationHandlerType

Methods

CreateBuilder<TContext>()

Creates a builder allowing to initialize an immutable descriptor.

Declaration
public static OpenIddictValidationHandlerDescriptor.Builder<TContext> CreateBuilder<TContext>()
    where TContext : BaseContext
Returns
Type Description
OpenIddictValidationHandlerDescriptor.Builder<TContext>

A new descriptor builder.

Type Parameters
Name Description
TContext

The event context type.

In This Article
Back to top Generated by DocFX