Table of Contents

Method MapHead

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

MapHead(string, Delegate)

Maps an HEAD route using the specified path and action function.

public void MapHead(string path, Delegate action)

Parameters

path string

The route path.

action Delegate

The route function to be called after matched.

MapHead(string, RouteAction)

Maps an HEAD route using the specified path and action function.

public void MapHead(string path, RouteAction action)

Parameters

path string

The route path.

action RouteAction

The route function to be called after matched.