¡@

Home 

c# Programming Glossary: fromevent

How to expose IObservable<T> properties without using Subject<T> backing field

http://stackoverflow.com/questions/12053709/how-to-expose-iobservablet-properties-without-using-subjectt-backing-field

even when they'll be consumed by Rx code so probably FromEventPattern Also a bit more details on why using Subject like this.. regular .NET events for this and bridge them to Rx using FromEvent methods and for sharing subscriptions within a reactive query..

General purpose FromEvent method

http://stackoverflow.com/questions/12865848/general-purpose-fromevent-method

purpose FromEvent method Using the new async await model it's fairly straightforward.. public event Action OnCompletion public static Task FromEvent MyClass obj TaskCompletionSource object tcs new TaskCompletionSource.. tcs.SetResult null return tcs.Task This then allows await FromEvent new MyClass The problem is that you need to create a new FromEvent..