I am debugging the code of a server which receives requests and sends response using WCF.
I have never used WCF before. I found that when a client sends a request, a method in the server will be executed. I don't see anything particular about the declaration of the method.
I wonder how to specify a method of a server to run when the server receives a request? Is the declaration of such a method specified explicitly (with some modifier), or implicitly (via a special method name)?