I\'m using RX extensions and WF4 to create a workflow which reacts to observable messages to progress the workflow. To do this, I bring in an object containing an IObservabl
You're missing this:
using System;
That's the namespace containing the ObservableExtensions static class with all the Subscribe extension methods.
Subscribe
Extension methods are "discovered" via using directives (as well as the namespace hierarchy of the code trying to use them).
using