2
NancyModuleの外部でビューをレンダリングすることはできますか?例えば、私はそうのようなエラーパイプラインでのビューをレンダリングすることができるようにしたい:nancy bootstrapperからのレンダービュー?
public class MyBootstrapper: DefaultNancyBootstrapper
{
protected override void RequestStartup(TinyIoCContainer container, IPipelines pipelines, NancyContext context)
{
pipelines.OnError += ((ctx, e) =>
{
if (context.Request.Headers.Accept.Any(c => c.Item1.Equals("text/html")))
{
// Render view using e here
}
});
}
}