You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Correlates the elements of two sequences based on equality of keys and groups the results.
483
+
/// </summary>
484
+
/// <typeparam name="TOuter">The type of the elements of the first sequence.</typeparam>
485
+
/// <typeparam name="TInner">The type of the elements of the second sequence.</typeparam>
486
+
/// <typeparam name="TKey">The type of the keys returned by the key selector functions.</typeparam>
487
+
/// <typeparam name="TResult">The type of the result elements.</typeparam>
488
+
/// <param name="outer">The first sequence to join.</param>
489
+
/// <param name="inner">The second sequence to join.</param>
490
+
/// <param name="outerKeySelector">A function to extract the join key from each element of the first sequence.</param>
491
+
/// <param name="innerKeySelector">A function to extract the join key from each element of the second sequence.</param>
492
+
/// <param name="resultSelector">A function to create a result element from an element from the first sequence and a collection of matching elements from the second sequence.</param>
493
+
/// <returns>An IQbservable that contains elements of type TResult that are obtained by performing a grouped join on two sequences.</returns>
/// Projects each element of an qbservable sequence to a sequence, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence.
559
+
/// </summary>
560
+
/// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
561
+
/// <typeparam name="TSequence">The type of the elements in the projected intermediate enumerable sequences.</typeparam>
562
+
/// <typeparam name="TResult">The type of the elements in the result sequence.</typeparam>
563
+
/// <param name="source">An observable sequence of elements to project.</param>
564
+
/// <param name="collectionSelector">A transform function to apply to each element.</param>
565
+
/// <param name="resultSelector">A transform function to apply to each element of the intermediate sequence.</param>
0 commit comments