【发布时间】:2012-10-07 23:54:36
【问题描述】:
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()
{ ... }
我需要哪些步骤才能在此方法中设置断点以便找出一些东西?
我还安装了 ReSharper 7。
我尝试了一些方法,但不知道该怎么做。我最接近的是单步执行一些 ASP.NET MVC 代码,但不是一些更核心的东西,比如这样。
注意:这个问题与this previously asked SO question 相关/启发。
【问题讨论】:
标签: c# asp.net .net debugging debug-symbols