The following method exists in the dll System.Web.Security
Dll: System.Web.Security
File: CookielessHelper.cs
Method:
// This function is called for all requests -- it must be performant.
// In the common case (i.e. value not present in the URI, it must not
// look at the headers collection
internal void RemoveCookielessValuesFromPath()
{ ... }
What steps are required for me to put a breakpoint in this method so I can figure some stuff out?
I've also got ReSharper 7 installed.
I've tried a few things but can't figure out how to do this. The closest I've got is to step through some ASP.NET MVC code, but not some of the more core stuff, like this.
Note: This question is related/inspired by this previously asked SO question.