GetConnectionInterface 在生命周期的哪个点被调用?

发布于 2024-07-05 04:03:02 字数 430 浏览 9 评论 0原文

我在 Web 部件上有此方法:

private IFilterData _filterData = null;

[ConnectionConsumer("Filter Data Consumer")]
public void GetConnectionInterface(IFilterData filterData)
{
    _filterData = filterData;
}

现在,在调用 _filterData 之前,我需要知道何时可以期望它不为 null。 这是什么时候的事?!

在不了解这一点的情况下,我能做的最好的事情就是将所有 _filterWebpart 相关代码填充到 OnPreRender 的最后几行中,并希望得到最好的结果。

I have this method on a webpart:

private IFilterData _filterData = null;

[ConnectionConsumer("Filter Data Consumer")]
public void GetConnectionInterface(IFilterData filterData)
{
    _filterData = filterData;
}

Now, before I can call upon _filterData, I need to know when i can expect it to not be null. When is this?!

Without knowing this, the best I can do is stuff all of my _filterWebpart dependent code into the last lines of OnPreRender and hope for the best.

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

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

发布评论

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

评论(1

我喜欢麦丽素 2024-07-12 04:03:02

根据这个文档,它看起来像Load。

http://msdn.microsoft.com/en-us/library/ms366536。 ASPX

According to this document, it looks like Load.

http://msdn.microsoft.com/en-us/library/ms366536.aspx

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