作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已声明 PreApplicationStartMethodAttribute
在装配级别是这样的:
[assembly: PreApplicationStartMethod(typeof(MyApp.Global), "InitializeApplication")]
InitializeApplication
的声明:
public class Global : HttpApplication
{
public static void InitializeApplication()
{
// Initialization code goes here...
}
}
InitializeApplication
方法。我在它上面设置了一个断点,但它没有被击中。
PreApplicationStartMethodAttribute
指定方法?
最佳答案
尝试在本地使用 IIS Express,可能将调试器附加到它的进程会更容易。
关于visual-studio-2010 - 如何调试我在 IIS 7.5 上运行时使用 PreApplicationStartMethodAttribute 程序集属性设置的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6097251/
System.Web.PreApplicationStartMethodAttribute 定义为: [AttributeUsage(AttributeTargets.Assembly, AllowM
在 .NET 4(.5) 中有这个惊人的 Attribute : PreApplicationStartMethodAttribute , 我想在 SharePoint 2013 中使用它,所以我不必
我已声明 PreApplicationStartMethodAttribute在装配级别是这样的: [assembly: PreApplicationStartMethod(typeof(MyApp.
我是一名优秀的程序员,十分优秀!