dotnet/reactive · error · ArgumentNullException

resultSelector

Error message

resultSelector

What it means

The two-argument SelectMany overload throws ArgumentNullException when resultSelector, the Func<TSource, TAsyncOperationResult, TResult> combining element and async result, is null. The result selector defines the projection of the composed query, so null is rejected at composition time. This validation is eager, not deferred to subscription.

Solutions

  1. Pass a concrete result selector, e.g. (x, r) => new Result(x, r).
  2. If projection is identity, supply (x, r) => r instead of null.
  3. Null-check the projector before composing the query.

Example fix

// before
src.SelectMany(x => x.LoadAsync(), null); // projection missing
// after
src.SelectMany(x => x.LoadAsync(), (x, r) => r);
Defensive patterns

Strategy: validation

Validate before calling

if (resultSelector == null) resultSelector = (x, r) => r; // identity fallback

Type guard

bool HasResultSelector<TSource, TRes, TResult>(Func<TSource, TRes, TResult> rs) => rs != null;

Try / catch

try { return source.SelectMany(opSelector, resultSelector); }
catch (ArgumentNullException ex) when (ex.ParamName == "resultSelector") { return source.SelectMany(opSelector, (x, r) => r); }

Prevention

When it happens

Trigger: source.SelectMany(opSelector, resultSelector) where the resultSelector argument is null, e.g. a nullable Func parameter, a query-comprehension lowering with a missing projection, or a captured field never assigned.

Common situations: Building queries dynamically where the projection is conditionally supplied; helper APIs with optional projector parameters; unit tests passing null placeholders.

Related errors


AI-assisted analysis of dotnet/reactive@94b5d5ab91 (2026-09-15). Data as JSON: /api/errors/790d40e9c69450df. Report an issue: GitHub.

Appendix: source

Thrown at Rx.NET/Source/src/System.Reactive/Platforms/WinRT/Linq/WindowsObservable.StandardSequenceOperators.cs:90

        /// <param name="resultSelector">A transform function to apply to each element of the intermediate sequence.</param>
        /// <returns>An observable sequence whose elements are the result of obtaining an asynchronous operation for each element of the input sequence and then mapping the asynchronous operation's result and its corresponding source element to a result element.</returns>
        /// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="asyncOperationSelector"/> or <paramref name="resultSelector"/> is null.</exception>
        /// <remarks>This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and Windows Runtime asynchronous operations, without requiring manual conversion of the asynchronous operations to observable sequences using <see cref="AsyncInfoObservableExtensions.ToObservable{TResult}(IAsyncOperation{TResult})"/>.</remarks>
        public static IObservable<TResult> SelectMany<TSource, TAsyncOperationResult, TResult>(this IObservable<TSource> source, Func<TSource, IAsyncOperation<TAsyncOperationResult>> asyncOperationSelector, Func<TSource, TAsyncOperationResult, TResult> resultSelector)
        {
            if (source == null)
            {
                throw new ArgumentNullException(nameof(source));
            }

            if (asyncOperationSelector == null)
            {
                throw new ArgumentNullException(nameof(asyncOperationSelector));
            }

            if (resultSelector == null)
            {
                throw new ArgumentNullException(nameof(resultSelector));
            }

            return source.SelectMany(x => asyncOperationSelector(x).ToObservable(), resultSelector);
        }

        /// <summary>
        /// Projects each element of an observable sequence to a Windows Runtime asynchronous operation, invokes the result selector for the source element and the asynchronous operation result, and merges the results into one observable sequence.
        /// </summary>
        /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
        /// <typeparam name="TAsyncOperationResult">The type of the results produced by the projected asynchronous operations.</typeparam>
        /// <typeparam name="TAsyncOperationProgress">The type of the reported progress objects, which get ignored by this query operator.</typeparam>
        /// <typeparam name="TResult">The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate asynchronous operation results.</typeparam>
        /// <param name="source">An observable sequence of elements to project.</param>
        /// <param name="asyncOperationSelector">A transform function to apply to each element.</param>
        /// <param name="resultSelector">A transform function to apply to each element of the intermediate sequence.</param>
        /// <returns>An observable sequence whose elements are the result of obtaining an asynchronous operation for each element of the input sequence and then mapping the asynchronous operation's result and its corresponding source element to a result element.</returns>
        /// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="asyncOperationSelector"/> or <paramref name="resultSelector"/> is null.</exception>
        /// <remarks>This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and Windows Runtime asynchronous operations, without requiring manual conversion of the asynchronous operations to observable sequences using <see cref="AsyncInfoObservableExtensions.ToObservable{TResult}(IAsyncOperation{TResult})"/>.</remarks>

View on GitHub (pinned to 94b5d5ab91)