We are using .NET 3.5 and have started using Reactive Extensions. We use system.Reactive (Runtime Version: v2.0.50727), which is compatible with .NET 3.5.
I am trying to observe the dispatcher manager event, since I use WPF controls (it has winforms shell, with WPF host control built in), however I could not define this parameter in the Scheduler class (system.reactive.concurrency.scheduler). It appears to be available from .NET 4.0 onwards. My question is, how can I work in .NET 3.5? Please note that the call is inside my ViewModel, not View.
the code:
this.ObservePropertyChanged(x => x.Queue)
Thanks,
-Mike
c # system.reactive
Mike
source share