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
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.

Constructors

RouterActionHandlerCallback(object, nint)

Methods

BeginInvoke(T, AsyncCallback, object)
EndInvoke(IAsyncResult)
Invoke(T)