30
System.MissingMethodException: Yöntem bulunamadı?
Bir zamanlar asp.net webforms uygulamasında ne çalışıyordu şimdi bu hatayı atıyor: System.MissingMethodException: Yöntem bulunamadı DoThisYö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() …
245
c#
asp.net
dll
nuget
httphandler