Programmatically get Summary comments at runtime

jullieshits

New Member
I'm looking for a way to programmatically get the summary portion of Xml-comments of a method in ASP.net.I have looked at the previous related posts and they do not supply a way of doing so in a web environment. I can not use any 3rd party apps and due to a web environment, Visual studio plugin's arnt much use either.The closest thing i have found to a working solution was the JimBlackler project, but it only works on DLL's.Naturally, something like 'supply .CS file, get XML documentation' would be optimal.Current situationI have a web-service and im trying to dynammically generate documentation for it.Reading the Methods, and properties is easy, but getting the Summary for each method is throwing me off a bit.\[code\]/// <summary>/// This Is what im trying to read/// </summary>public class Some_Method(){}\[/code\]
 
Back
Top