Table of Contents

Class DocumentFilter<T>

Namespace
Cuemon.Extensions.Swashbuckle.AspNetCore
Assembly
Cuemon.Extensions.Swashbuckle.AspNetCore.dll

Represents a configurable base class of an Swashbuckle.AspNetCore.SwaggerGen.IDocumentFilter implementation.

public abstract class DocumentFilter<T> : DocumentFilter, IDocumentFilter, IConfigurable<T> where T : class, IParameterObject, new()

Type Parameters

T
Represents a configurable base class of an implementation.
Inheritance
Object
DocumentFilter<T>
Implements
IDocumentFilter
Derived
Inherited Members

Constructors

DocumentFilter(T)

Initializes a new instance of the DocumentFilter<T> class.

protected DocumentFilter(T options)

Parameters

options T

The configured options of this instance.

Properties

Options

Gets the configured options of this instance.

public T Options { get; }

Property Value

T

The configured options of this instance.

See Also