I recently started a project to create a RESTful API in WCF, and I will need to provide documentation along with the API itself. I was hoping to use XML code comments in my docs for this documentation.
But what I want to infer is simply the contracts that are exposed by the service: endpoints and structures of JSON / XML objects. Since I'm trying to create external documentation, I'm interested in some kind of internal part of my library or how it relates to the .Net Framework (or even that it is .Net, for that matter).
What are my options for tools to create these documents? I heard Sandcastle or Doxygen are good tools for generating documents from XML code comments, but can I filter out classes and methods that I don't want to disclose?
rest wcf
Andrew
source share