I have a class that has an event defined as an Action<Guid>, as opposed to a classic EventHandler with EventArgs. Is there a way to convert this to an IObservable the same way would be done with a standard EventHandler? I need to do this so I can merge with other IObservables.

link|improve this question

62% accept rate
feedback

1 Answer

If you have this class:

public class Foo
{
    public event Action<Guid> Guid;
}

Then this is the code you need to turn the non-standard event into an IObservable<Guid>:

var foo = new Foo();

var guids = Observable.FromEvent<Guid>(
    h => foo.Guid += h,
    h => foo.Guid -= h);
link|improve this answer
I got back around to trying this, and it doesn't work. I get an error "Cannot convert lambda expression to type 'object' because it is not a delegate type" – Random Oct 4 '11 at 16:07
@Random - I just tested my code above and it works fine. Are you using the "1.0" version of Rx? – Enigmativity Oct 4 '11 at 22:27
No. I'm using v2.0.50727 of System.Reactive. – Random Oct 7 '11 at 17:42
@Random - There isn't a v2.0.50727 for System.Reactive. That version number is the .NET framework version number that it targets. Look for the assembly version number and let me know what that is. – Enigmativity Oct 8 '11 at 0:47
Sorry I let this question drop off. We just decided it was easier to re-implement the event in a traditional way instead of continuing to battle this problem. Thanks for the assist, though! – Random Oct 17 '11 at 15:52
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.