.NET: Custom format for web service documentation?

For a web service created in .NET, switching to a service in the browser leads to a somewhat brief listing of the methods in the service and any description that is provided.

Is there a way to customize the documentation format for .NET web services?

Customization may include something as simple as customizing the styles on the page or complexity as a complete redefinition of the created HTML. Any point in the right direction is appreciated.

+3
source share
2 answers

I found in this article that it looks like it covers the base, but I have never tried this.

web.config wsdlHelpGenerator,

<configuration>
   <system.web>
      <webServices>
         <wsdlHelpGenerator href="Path/To/Custom/HelpGenerator.aspx"/>
      </webServices>
   </system.web>
</configuration>
+2

REST , . .

+2

Source: https://habr.com/ru/post/1760786/


All Articles