Asp.Net AutoEventWireup - 它在代码方面做了什么

发布于 2024-07-14 22:35:47 字数 256 浏览 5 评论 0原文

我一直在挖掘反射器中的 Page、TemplateControl 和 Control 类,试图找出 AutoEventWireUp 属性的实际使用位置。 我失败得很惨。

我对 AutoEventWireUp 的理解很粗略,但我认为它会导致事件处理程序方法自动连接到事件? 所以我想我会看到一些发生这种情况的代码,但事实并非如此。

AutoEventWireUp 的实际用途在哪里? 我可以在反射器中看到代码吗?

提前致谢!

I've been digging thru the Page, TemplateControl and Control classes in reflector trying to figure out where AutoEventWireUp property is actually getting used. I've failed miserably.

My understanding of AutoEventWireUp is sketchy but I think it casues event handler methods to be automatically wired up to events?
So I thought I'd see some code where this is happening, but this isn't the case.

Where is AutoEventWireUp actually used under the hood? Can I see the code in reflector?

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北恋 2024-07-21 22:35:47

我本来打算写一个解释,但 K. Scott Allen 已经一个更好的

我的建议是避免 AutoEventWireup 并重写基本的“OnEvent”方法或显式连接您自己的事件,因为这会更快、更不那么神奇并且更容易调试。

I was going to write up an explanation but K. Scott Allen has a much better one.

My advice is to avoid AutoEventWireup and either override base "OnEvent" methods or explicitly wire up your own events as this will be faster, less magical, and easier to debug.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文