How can I debug-step-through this .NET BCL code?

ArikSigati

New Member
The following method exists in the dll \[code\]System.Web.Security\[/code\]\[code\]Dll: System.Web.Security File: CookielessHelper.csMethod: // 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() { ... }\[/code\]Can someone please help by listing the steps required for me to put a breakpoint in this method so I can 'figure some stuff out', please?I've also got \[code\]ReSharper 7\[/code\] installed, if that helps.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 \[code\]ASP.NET MVC\[/code\] code .. but not some of the more core stuff, like this :(Hopefully, this can be done :)Cheers!Note: This question is related/inspired by this previously asked SO question.
 
Back
Top