GetConnectionInterface 在生命周期的哪个点被调用?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据这个文档,它看起来像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