Archive

Posts Tagged ‘SendOrPostCallback’

Part II: Mimic SynchronizationContext behaviour on .NET CF

February 15th, 2009
Daniel Marbach

Not long ago I posted the first part of this article under:

Part I: Mimic SynchronizationContext behaviour on .NET CF

The article was intended to give the reader a better feeling of the purpose of the SynchronizationContext and the importance of the class on behalf of synchronization between different apartment threads. Unfortunately the SynchronizationContext is not available on the .NET compact framework which is especially annoying when you want to port existing code which uses the SynchronizationContext onto the compact framework platform. So how can we obtain similar functionality on the compact framework?
read more

 

Mobile , , , ,

Part I: Mimic SynchronizationContext behaviour on .NET CF

February 3rd, 2009
Daniel Marbach

Before I got into the details of the problem I want to briefly describe what the SynchronizationContext class really does and what it’s main purpose really is in the first part of the article. From that perspective I’m going to show how the basic functionality of the SynchronizationContext class can be implemented for the .NET compact framework in the second part of the article..

read more

 

Mobile , , , ,