When is the SoapHeader field instantiated in ASMX?

Consider the following:\[code\]public MyCustomHeader MyHeader;public New(){ //MyHeader is NOT instantiated}[SoapHeader("MyHeader")][WebMethod()]public bool MyFunction(){ //MyHeader is instantiated, but when was it instantiated?}\[/code\]
 
Back
Top