gpt4 book ai didi

c# - 为什么取消订阅DataContextChanged会因Collection Modified导致InvalidOperation异常

转载 作者:行者123 更新时间:2023-11-30 22:24:47 24 4
gpt4 key购买 nike

我最近在使用数据上下文更改事件时偶然发现了 silverlight 中的一个问题。

如果你订阅了一个改变的事件然后立即取消订阅它会抛出异常,

DataContextChanged += MainPage_DataContextChanged;
void MainPage_DataContextChanged(object sender, DependencyPropertyChangedEventArgs e)
{
var vm = e.NewValue as VM;
if(vm != null)
{
DataContextChange-= MainPage_DataContextChanged;//throws invalidoperationexception for collection modified
}
}

为了解决这个问题,我只是稍后取消订阅该事件,在这种情况下,要求是尽早取消订阅而不是稍后取消订阅,这样就可以了。

DataContextChanged += MainPage_DataContextChanged;
void MainPage_DataContextChanged(object sender, DependencyPropertyChangedEventArgs e)
{
var vm = e.NewValue as VM;
if(vm != null)
{
//forces item onto the dispatcher queue so anything needing to happen with 'collections' happens first
Dispatcher.BeginInvoke(()=>
{
DataContextChange-= MainPage_DataContextChanged;//throws invalidoperationexception for collection modified
});
}
}

我猜这些集合是可视化树中所有不同控件的子元素,我猜它们的更新可能发生在调度程序队列上,所以我的问题是:

为什么在触发后取消订阅的事件会影响之后要修改或更新的集合?

编辑:经过一番思考,这与事件处理程序调用列表在完成之前被修改有什么关系吗?

最佳答案

您对调用列表被修改的怀疑是正确的。

根据 dotPeek 的反编译,这里是触发 DataContextChanged 事件的代码:

private void RaisePublicDataContextChanged()
{
if (this._dataContextChangedInfo == null)
return;
object oldValue = this._dataContextChangedInfo.OldValue;
object dataContext = this.DataContext;
if (oldValue == dataContext)
return;
this._dataContextChangedInfo.OldValue = dataContext;
List<DependencyPropertyChangedEventHandler>.Enumerator enumerator = this._dataContextChangedInfo.ChangedHandlers.GetEnumerator();
try
{
// ISSUE: explicit reference operation
while (((List<DependencyPropertyChangedEventHandler>.Enumerator) @enumerator).MoveNext())
{
// ISSUE: explicit reference operation
((List<DependencyPropertyChangedEventHandler>.Enumerator) @enumerator).get_Current()((object) this, new DependencyPropertyChangedEventArgs(FrameworkElement.DataContextProperty, oldValue, dataContext));
}
}
finally
{
enumerator.Dispose();
}
}

如您所见,代码使用枚举器遍历处理程序集合。因此,当您在调用处理程序期间取消订阅该事件时,您会使枚举器无效,从而导致您看到的异常。

关于c# - 为什么取消订阅DataContextChanged会因Collection Modified导致InvalidOperation异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12604677/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com