I think you can achieve what you are trying to do by decorating your JsonRpcMethod with:
This description will appear below the method on the help page.
On Monday, March 25, 2013 1:12:30 PM UTC-5, Adam Sarasin wrote:
Hello Everyone,
I apologize if this question has been asked before. Or if it is a dumb question in general.
I was wondering if it was possible to add custom method summaries/descriptions to the jayrock help page that is automatically created. I can do it on non JayRock WebMethods like so:
[WebMethod(Description="Does awesome things")]
public Awesome awesomeMethod()
{
//...awesome code
}
Ideally, I would like to use the help/test pages as a significant portion of my documentation and being able to add summaries to each of my methods would be very beneficial.
Thank you for your time,
Adam