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
/// Joins collections of the same type into a single channel reader in the order provided.
87
88
/// </summary>
@@ -90,6 +91,8 @@ public static ChannelReader<T> Join<T>(this ChannelReader<T[]> source, bool sing
90
91
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
91
92
/// <param name="allowSynchronousContinuations">True can reduce the amount of scheduling and markedly improve performance, but may produce unexpected or even undesirable behavior.</param>
92
93
/// <returns>A channel reader containing the joined results.</returns>
94
+
[SuppressMessage("CodeQuality","IDE0079:Remove unnecessary suppression",Justification="For NET STandard 2.1")]
95
+
[SuppressMessage("Design","CA1031:Do not catch general exception types",Justification="Potential exception type is too far removed.")]
0 commit comments