I have a Visual Studio project, and trying to debug it. The method is this:
IHttpHandler IRouteHandler.GetHttpHandler(RequestContext requestContext)
I'm trying to figure out from where requestContext
is coming from. It should come from some external solution. I've implemented these suggestions, but my stack looks like this (all System methods)
Not everything should be from System libraries, since requestContext -> RouteDate -> RouteHandler -> MethodName
contains a method name which is in my current solution, so stack should hit one of my external solutions at some point, but I don't see where.