@@ -13,7 +13,7 @@ The package targets `netstandard2.0` and is designed to support the following ru
1313 * ` uap10 `
1414
1515
16- ** API count: 652 ** <!-- singleLineInclude: apiCount. path: /apiCount.include.md -->
16+ ** API count: 656 ** <!-- singleLineInclude: apiCount. path: /apiCount.include.md -->
1717
1818
1919** See [ Milestones] ( ../../milestones?state=closed ) for release notes.**
@@ -691,6 +691,8 @@ The class `Polyfill` includes the following extension methods:
691691 * ` Task<string[]> ReadAllLinesAsync(string, Encoding, CancellationToken) ` [ reference] ( https://learn.microsoft.com/en-us/dotnet/api/system.io.file.readalllinesasync?view=net-10.0#system-io-file-readalllinesasync(system-string-system-text-encoding-system-threading-cancellationtoken) )
692692 * ` Task<string> ReadAllTextAsync(string, CancellationToken) ` [ reference] ( https://learn.microsoft.com/en-us/dotnet/api/system.io.file.readalltextasync?view=net-10.0#system-io-file-readalltextasync(system-string-system-threading-cancellationtoken) )
693693 * ` Task<string> ReadAllTextAsync(string, Encoding, CancellationToken) ` [ reference] ( https://learn.microsoft.com/en-us/dotnet/api/system.io.file.readalltextasync?view=net-10.0#system-io-file-readalltextasync(system-string-system-text-encoding-system-threading-cancellationtoken) )
694+ * ` IAsyncEnumerable<string> ReadLinesAsync(string, CancellationToken) ` [ reference] ( https://learn.microsoft.com/en-us/dotnet/api/system.io.file.readlinesasync?view=net-10.0#system-io-file-readalllinesasync(system-string-system-threading-cancellationtoken) )
695+ * ` IAsyncEnumerable<string> ReadLinesAsync(string, Encoding, CancellationToken) ` [ reference] ( https://learn.microsoft.com/en-us/dotnet/api/system.io.file.readlinesasync?view=net-10.0#system-io-file-readalllinesasync(system-string-system-text-encoding-system-threading-cancellationtoken) )
694696 * ` Task WriteAllBytesAsync(string, byte[], CancellationToken) ` [ reference] ( https://learn.microsoft.com/en-us/dotnet/api/system.io.file.writeallbytesasync?view=net-10.0#system-io-file-writeallbytesasync(system-string-system-byte()-system-threading-cancellationtoken) )
695697 * ` Task WriteAllBytesAsync(string, ReadOnlyMemory<byte>, CancellationToken) ` [ reference] ( https://learn.microsoft.com/en-us/dotnet/api/system.io.file.appendallbytesasync?view=net-10.0#system-io-file-appendallbytesasync(system-string-system-readonlymemory((system-byte))-system-threading-cancellationtoken) )
696698 * ` Task WriteAllLinesAsync(string, IEnumerable<string>, CancellationToken) ` [ reference] ( https://learn.microsoft.com/en-us/dotnet/api/system.io.file.writealllinesasync?view=net-10.0#system-io-file-writealllinesasync(system-string-system-collections-generic-ienumerable((system-string))-system-threading-cancellationtoken) )
@@ -1211,6 +1213,8 @@ The class `Polyfill` includes the following extension methods:
12111213
12121214#### TaskWhenEach
12131215
1216+ * ` IAsyncEnumerable<Task> WhenEach(IEnumerable<Task>, CancellationToken) ` [ reference] ( https://learn.microsoft.com/en-us/dotnet/api/system.threading.tasks.task.wheneach?view=net-10.0 )
1217+ * ` IAsyncEnumerable<Task<TResult>> WhenEach<TResult>(IEnumerable<Task<TResult>>, CancellationToken) ` [ reference] ( https://learn.microsoft.com/en-us/dotnet/api/system.threading.tasks.task.wheneach?view=net-10.0 )
12141218
12151219
12161220#### TextReader
0 commit comments