I have code as follows:
public override void Touch()
{
if ( System.Windows.Threading.Dispatcher.CurrentDispatcher.CheckAccess() )
{
TouchBase();
}
else
{
System.Windows.Application.Current.Dispatcher.BeginInvoke(
System.Windows.Threading.DispatcherPriority.Send,
(Action) (() => TouchBase()) );
}
}
And I have just got a crash in the if block (not the else block) because certain things in there must be done on the main thread, and the call stack clearly indicates this is not the main thread, but an unmanaged IOCP thread.
So my question is, does CheckAccess() not work when called from an unmanaged thread or something? Can it really be that broken? Anyone got any ideas what's happening here. By the way, this problem occurs very rarely, so a suggestion to add some logging isn't really that useful.