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
.
This hides the non-generic version from IPreProcessorContext.
Declaration
TRequest Request { get; }
Property Value
Type | Description |
---|---|
TRequest |