Problem I have such a method that performs a long query search against some data. Task<List<SearchResult>> Search(string query){ … } […]

Problem LINQ Select usually works like this: IEnumerable<Task<int>> res = new[] {1,2,3}.Select(async i => i); I would like to have […]

Problem I have three observables: var itemsManipulationStarted = Observable.FromEvent<ManipulationStartedEventArgs>(Items, “ManipulationStarted”); var pageManipulationDelta = Observable.FromEvent<ManipulationDeltaEventArgs>(this, “ManipulationDelta”); var pageManipulationCompleted = Observable.FromEvent<ManipulationCompletedEventArgs>(this, “ManipulationCompleted”); […]

Problem This question over on SO about how to call a function “later” using Rx led me to post the […]

Problem I have such a method that performs a long query search against some data. Task<List<SearchResult>> Search(string query){ … } […]

  • 1
  • 2