Interface IPreProcessorContext<TRequest>
defines the generic interface for a pre-processor context with a specific type for the request.
Inherited Members
Namespace: FastEndpoints
Assembly: FastEndpoints.dll
Syntax
public interface IPreProcessorContext<out TRequest> : IPreProcessorContext
Type Parameters
Name | Description |
---|---|
TRequest | The type of the request object, which must be non-nullable. |
Properties
Request
gets the request object of the generic type TRequest
.
may be null if request binding has failed.
Declaration
TRequest? Request { get; }
Property Value
Type | Description |
---|---|
TRequest |