Below is the official example for registering routes in Nancy. But what if I do not want to "do something" in that method, but do it in DoSomething()
, instead?
public class ProductsModule : NancyModule
{
public ProductsModule()
{
Get["/products/{id}"] = _ =>
{
//do something
};
}
}
public abstract class NancyModule : INancyModule, IHideObjectMembers
{
public RouteBuilder Get { get; }
}
public class RouteBuilder : IHideObjectMembers
{
public RouteBuilder(string method, NancyModule parentModule);
public Func<dynamic, dynamic> this[string path] { set; }
}
I do not know what signature DoSomething
should have. Can this work something like below? It is not that I must not use lambda expression; I am just curious because all these patterns Nancy is using look quite bizarre and unique.
public class ProductsModule : NancyModule
{
???? DoSomething(????)
{
//do something
return ????
}
public ProductsModule()
{
Get["/products/{id}"] = DoSomething;
}
}
From the Nancy documentation:
So, you can simply do the following:
Where
DoSomething
is defined as: