VibrantRouter.Match

Undocumented in source.

Members

Functions

Match
void Match(HTTPMethod method, string path, Temp function(HTTPServerRequest, HTTPServerResponse) callback, Result function(Temp) transformer)

Matches a path and method type using a function callback.

Match
void Match(HTTPMethod method, string path, string contentType, Temp function(HTTPServerRequest, HTTPServerResponse) callback, Result function(Temp) transformer)

Matches a path and method type using a function callback.

Match
void Match(HTTPMethod method, string path, Temp delegate(HTTPServerRequest, HTTPServerResponse) callback, Result delegate(Temp) transformer)

Matches a path and method type using a delegate callback.

Match
void Match(HTTPMethod method, string path, string contentType, Temp delegate(HTTPServerRequest, HTTPServerResponse) callback, Result delegate(Temp) transformer)

Matches a path and method type using a delegate callback.

Meta