Interface IOperationHandler<TInput, TResult>.IWrapper
Support for accessing the underlying handler for when handlers are wrapped.
public interface IOperationHandler<TInput, TResult>.IWrapper
Properties
Underlying
Gets the immediate underlying handler.
IOperationHandler<TInput, TResult> Underlying { get; }
Property Value
- IOperationHandler<TInput, TResult>
Remarks
This is often only useful in middleware that needs to access a handler instance. Users may need to continually invoke this if they need further wrapped handlers.