I have this method on my WebService (.asmx)
[WebMethod(EnableSession = true)]
public string Test(string IDPagina)
{
return "Hello"
}
now, if from another method inside the WebService :
[WebMethod(EnableSession = true)]
public string Edit(string IDPagina)
{
return Test("1234");
}
it “call” directly that Test() from the same “class” or it will done an “asynch” call to itself? (making a new soap connection etc..).
Just curious…
It will call it directly like any other function.