7 overrides of WriteLineAsync
Microsoft.AspNetCore.WebUtilities (1)
HttpResponseStreamWriter.cs (1)
364
public override Task
WriteLineAsync
(ReadOnlyMemory<char> value, CancellationToken cancellationToken = default)
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\CodeDom\Compiler\IndentedTextWriter.cs (1)
488
public override async Task
WriteLineAsync
(ReadOnlyMemory<char> buffer, CancellationToken cancellationToken = default)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
916
public override Task
WriteLineAsync
(ReadOnlyMemory<char> buffer, CancellationToken cancellationToken = default)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\StringWriter.cs (1)
290
public override Task
WriteLineAsync
(ReadOnlyMemory<char> buffer, CancellationToken cancellationToken = default)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
551
public override async Task
WriteLineAsync
(ReadOnlyMemory<char> buffer, CancellationToken cancellationToken = default)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (2)
878
public override Task
WriteLineAsync
(ReadOnlyMemory<char> buffer, CancellationToken cancellationToken = default) => Task.CompletedTask;
1120
public override Task
WriteLineAsync
(ReadOnlyMemory<char> buffer, CancellationToken cancellationToken = default)
15 references to WriteLineAsync
GenerateDocumentationAndConfigFiles (11)
Program.cs (11)
277
await Console.Error.
WriteLineAsync
($"'{path}' does not exist".AsMemory(), cancellationToken).ConfigureAwait(false);
378
await Console.Out.
WriteLineAsync
($"Failed to create analyzer rules missing documentation file. Http response timed out".AsMemory(), cancellationToken).ConfigureAwait(false);
384
await Console.Error.
WriteLineAsync
("One or more auto-generated documentation files were either edited manually, or not updated. Please revert changes made to the following files (if manually edited) and run `dotnet msbuild /t:pack` at the root of the repo to automatically update them:".AsMemory(), cancellationToken).ConfigureAwait(false);
821
await Console.Error.
WriteLineAsync
($"Missing entry in {fileWithPath}".AsMemory(), cancellationToken).ConfigureAwait(false);
822
await Console.Error.
WriteLineAsync
(line.AsMemory(), cancellationToken).ConfigureAwait(false);
877
await Console.Error.
WriteLineAsync
($"'{assemblyPath}' does not exist".AsMemory(), cancellationToken).ConfigureAwait(false);
889
await Console.Error.
WriteLineAsync
(ex.Message.AsMemory(), cancellationToken).ConfigureAwait(false);
915
await Console.Error.
WriteLineAsync
($"Expected both '{shippedFile}' and '{unshippedFile}' to exist or not exist, but '{existingFile}' exists and '{nonExistingFile}' does not exist.".AsMemory(), cancellationToken).ConfigureAwait(false);
925
await Console.Error.
WriteLineAsync
($"'{shippedFile}' exists but was not expected".AsMemory(), cancellationToken).ConfigureAwait(false);
954
await Console.Error.
WriteLineAsync
(ex.Message.AsMemory(), cancellationToken).ConfigureAwait(false);
962
await Console.Error.
WriteLineAsync
($"Could not find any 'AnalyzerReleases.Shipped.md' file".AsMemory(), cancellationToken).ConfigureAwait(false);
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\CodeDom\Compiler\IndentedTextWriter.cs (1)
491
await _writer.
WriteLineAsync
(buffer, cancellationToken).ConfigureAwait(false);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
920
return base.
WriteLineAsync
(buffer, cancellationToken);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
555
await writer.
WriteLineAsync
(buffer, cancellationToken).ConfigureAwait(false);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (1)
725
WriteLineAsync
(value.AsMemory(), cancellationToken);