Previous working asp.net webforms app now throws this error:
System.MissingMethodException: Method not found
The DoThis method is on the same class and it should work.
I have a generic handler as such:
public class MyHandler: IHttpHandler
{
    public void Processrequest(HttpContext context)
    {
      // throws error now System.MissingMethodException: 
      // Method not found.
      this.DoThis(); 
    }
    public void DoThis(){ ... }
}
 
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
    