After navigate to http://localhost:57645
code below returns 200 (OK) for DHC by Restlet and 500 (InternalServerError) for "Chrome Browser".
public class SampleModule : Nancy.NancyModule
{
public SampleModule()
{
Get["/"] = _ =>
{
return Negotiate
.WithStatusCode(HttpStatusCode.OK)
.WithModel(10);
};
}
How is this possible?