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
Copy file name to clipboardExpand all lines: Ix.NET/Source/System.Interactive.Async/System/Linq/Operators/Average.Generated.tt
-163Lines changed: 0 additions & 163 deletions
Original file line number
Diff line number
Diff line change
@@ -148,169 +148,6 @@ else
148
148
}
149
149
}
150
150
151
-
/// <summary>
152
-
/// Computes the average of an async-enumerable sequence of <see cref="int"/> values that are obtained by invoking an asynchronous transform function on each element of the source sequence and awaiting the result.
153
-
/// </summary>
154
-
/// <typeparam name="TSource">The type of elements in the source sequence.</typeparam>
155
-
/// <param name="source">An async-enumerable sequence of values to compute the average of.</param>
156
-
/// <param name="selector">A transform function to invoke and await on each element of the source sequence.</param>
157
-
/// <param name="cancellationToken">An optional cancellation token for cancelling the sequence at any time.</param>
158
-
/// <returns>A ValueTask containing the average of the sequence of values.</returns>
159
-
/// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="selector"/> is <see langword="null"/>.</exception>
160
-
/// <exception cref="InvalidOperationException">The source sequence is empty.</exception>
161
-
/// <remarks>The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
Copy file name to clipboardExpand all lines: Ix.NET/Source/System.Linq.Async/System/Linq/IAsyncIListProvider.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ namespace System.Linq
19
19
/// its own version of this interface. We can't replace this with a type forwarder here because that would risk creating a
20
20
/// circular dependency in cases where an application managed to get out-of-sync versions of the two packages.
21
21
/// </remarks>
22
-
[Obsolete("Use the definition of this type in the System.Interactive.Async NuGet package System.Linq.Async instead.")]// Can't use a type forwarder because
22
+
[Obsolete("This interface was always unsupported, and the IAsyncEnumerable<T> LINQ implementation in System.Linq.AsyncEnumerable does not recognize it, so this no longer serves a purpose")]
0 commit comments