Bir zamanlar asp.net webforms uygulamasında ne çalışıyordu şimdi bu hatayı atıyor:
System.MissingMethodException: Yöntem bulunamadı
DoThis
Yöntem aynı sınıfta olduğunu ve çalışması gerekir.
Ben böyle bir genel işleyici var:
public class MyHandler: IHttpHandler
{
public void Processrequest(HttpContext context)
{
// throws error now System.MissingMethodException: Method not found?
this.DoThis();
}
public void DoThis()
{
//
}
}
somepage
? 'Ses' belirtildiği gibi, bu kod geçerli değil. Lütfen bize sorunu gösteren eksiksiz bir kod snippet'i verin .