Table of Contents

Class OperationFilter<T>

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

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

public abstract class OperationFilter<T> : OperationFilter, IOperationFilter, IConfigurable<T> where T : class, IParameterObject, new()

Type Parameters

T
Represents a configurable base class of an implementation.
Inheritance
Object
OperationFilter<T>
Implements
IOperationFilter
Inherited Members

Constructors

OperationFilter(T)

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

protected OperationFilter(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