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: Open.ChannelExtensions/Extensions._.cs
+18-3Lines changed: 18 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -97,14 +97,29 @@ public static ChannelReader<string> ToChannel(this TextReader source,
97
97
/// <typeparam name="T">The input type of the channel.</typeparam>
98
98
/// <param name="source">The source data to use.</param>
99
99
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
100
-
/// <param name="maxConcurrency">The maximum number of concurrent operations.</param>
/// Writes all entries from the source to a channel and calls complete when finished.
111
+
/// </summary>
112
+
/// <typeparam name="T">The input type of the channel.</typeparam>
113
+
/// <param name="source">The source data to use.</param>
114
+
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
0 commit comments