VibrantRouter.Any

Undocumented in source.

Members

Functions

Any
void Any(string path, Temp function(HTTPServerRequest, HTTPServerResponse) callback, Result function(Temp) transformer)

Adds a handler for all method types on the given path.

Any
void Any(string path, string contentType, Temp function(HTTPServerRequest, HTTPServerResponse) callback, Result function(Temp) transformer)

Adds a handler for all method types on the given path.

Any
void Any(string path, Temp delegate(HTTPServerRequest, HTTPServerResponse) callback, Result delegate(Temp) transformer)

Adds a handler for all method types on the given path.

Any
void Any(string path, string contentType, Temp delegate(HTTPServerRequest, HTTPServerResponse) callback, Result delegate(Temp) transformer)

Adds a handler for all method types on the given path.

Meta