Gibt es eine Möglichkeit, die SOAP-Rohanforderung aus einer ASP.NET-Webmethode abzurufen?

Beispiel

public class Service1 : System.Web.Services.WebService
{
   [WebMethod]
   public int Add(,int x, int y)
   {
       string request = getRawSOAPRequest();//How could you implement this part?
       //.. do something with complete soap request

       int sum = x + y;
       return sum;
   }
}