Delegate RouterActionHandlerCallback<T>
Represents the function that receives an object of the T
and returns an HttpResponse response from the informed object.
public delegate HttpResponse RouterActionHandlerCallback<T>(T input) where T : notnull
Parameters
input
TThe result router object.
Returns
- HttpResponse
- Represents the function that receives an object of the T and returns an response from the informed object.
Type Parameters
T
The input object type. Cannot be nullable.