how does System.Web.HttpRequest::PathInfo work?
问题 I am trying to understand the PathInfo property of System.Web.HttpRequest and how it is set. Why would it be empty in the following example? var p = new System.Web.HttpRequest("file.txt","http://file.com/files/file.txt",""); //PathInfo is always empty return string.IsNullOrEmpty(p.PathInfo) I am trying to pipe the Elmah interface through Nancyfx by invoking the Elmah.ErrorLogPageFactory::ProcessRequest(HttpContext context). but it does not work because Elmah.ErrorLogPageFactory depends on