/// <summary /> public void ProcessRequest(HttpContext context) { var presenterBinder = new PresenterBinder(this, context); presenterBinder.PerformBinding(); OnLoad(); presenterBinder.Release(); }
/// <summary /> protected MvpWebService(bool throwExceptionIfNoPresenterBound) { this.throwExceptionIfNoPresenterBound = throwExceptionIfNoPresenterBound; presenterBinder = new PresenterBinder(this, HttpContext.Current); presenterBinder.PerformBinding(); }