views:

66

answers:

3

How to add comments/description/information about the web service methods so that the person who will invoke it will know what the method is for , what are the useful params etc. so the invoker will be able to read these.

+2  A: 

Sorry, there's no way to do this. You have to create actual documentation instead.

John Saunders
I thought so .Thanks.
+3  A: 

Add a help() method to the webservice. Return text, the same way you would for a command-line program (as in: progname -help).

I've done this myself, because six months later I can't remember what the parameters meant.

egrunin
A: 

There is a way if you are using WCF REST. Otherwise it is not possible as said John.

Incognito