How can I create HTML documentation for a SOAP / WebService class in .Net?

When you run the WebService project in VisualStudio (VS), you really see some HTML documentation, but help on C # comments don't go to HTML. You can get a description for each web method using the Description property of the WebMethod attribute, however this means duplicating the text from the comment help, and also does not allow you to document the parameters of the web method, as far as I can tell.

Is there an easy way to find the comment help already present in C # code?

Thankyou.

+4
source share
2 answers

Now we use the WCFExtra library to convert XML comments to my code into documentation comments in WSDL.

From there we use TechWriter to create documentation.

+1
source

C # comments are not going to assembly. There is a solution in Codeproject to provide alternative WSDL documentation: it should not be too difficult to configure an ASP.NET application to read a raw xml documentation file, with some configuration to match WSDL services and operations with classes and methods.

I do not know if there are any ready-made solutions for your problem.

+1
source

All Articles