Table of Contents

Delegate RouterActionHandlerCallback<T>

Namespace: Sisk.Core.Routing
Assembly: Sisk.Core.dll

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 T

The result router object.

Returns

HttpResponse

Type Parameters

T

The input object type. Cannot be nullable.