Base:
method
WriteLineAsync
System.IO.TextWriter.WriteLineAsync(System.String)
1 override of WriteLineAsync
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
1078public override Task WriteLineAsync(string? value) => Task.CompletedTask;
31 references to WriteLineAsync
aspire (1)
Diagnostics\FileLoggerProvider.cs (1)
117await _writer.WriteLineAsync(message).ConfigureAwait(false);
Aspire.Hosting (15)
ApplicationModel\Docker\DockerfileStatements.cs (15)
31await writer.WriteLineAsync(statement).ConfigureAwait(false); 49await writer.WriteLineAsync($"WORKDIR {_path}").ConfigureAwait(false); 67await writer.WriteLineAsync($"RUN {_command}").ConfigureAwait(false); 87await writer.WriteLineAsync($"COPY {_source} {_destination}").ConfigureAwait(false); 109await writer.WriteLineAsync($"COPY --from={_stage} {_source} {_destination}").ConfigureAwait(false); 129await writer.WriteLineAsync($"ENV {_name}={_value}").ConfigureAwait(false); 147await writer.WriteLineAsync($"EXPOSE {_port}").ConfigureAwait(false); 170await writer.WriteLineAsync($"CMD {commandJson}").ConfigureAwait(false); 188await writer.WriteLineAsync($"USER {_user}").ConfigureAwait(false); 218await writer.WriteLineAsync(statement).ConfigureAwait(false); 241await writer.WriteLineAsync($"ENTRYPOINT {commandJson}").ConfigureAwait(false); 262await writer.WriteLineAsync($"RUN {mountOptions} \\\n {_command}").ConfigureAwait(false); 295await writer.WriteLineAsync($"COPY --chown={_chown} {_source} {_destination}").ConfigureAwait(false); 319await writer.WriteLineAsync($"COPY --from={_stage} --chown={_chown} {_source} {_destination}").ConfigureAwait(false); 342await writer.WriteLineAsync($"# {line}").ConfigureAwait(false);
Aspire.Hosting.Kubernetes (1)
KubernetesPublishingContext.cs (1)
176await writer.WriteLineAsync(HelmExtensions.TemplateFileSeparator).ConfigureAwait(false);
IIS.LongTests (2)
src\Servers\IIS\IIS\test\Common.LongTests\ShutdownTests.cs (2)
111await writer.WriteLineAsync("App if offline but you wouldn't see this message"); 129await writer.WriteLineAsync("App if offline but you wouldn't see this message");
IIS.NewHandler.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.LongTests\ShutdownTests.cs (2)
111await writer.WriteLineAsync("App if offline but you wouldn't see this message"); 129await writer.WriteLineAsync("App if offline but you wouldn't see this message");
IISExpress.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.LongTests\ShutdownTests.cs (2)
111await writer.WriteLineAsync("App if offline but you wouldn't see this message"); 129await writer.WriteLineAsync("App if offline but you wouldn't see this message");
InMemory.FunctionalTests (2)
UpgradeTests.cs (2)
39await writer.WriteLineAsync("New protocol data"); 85await writer.WriteLineAsync(recv);
Microsoft.DotNet.Helix.Sdk (1)
DownloadFromResultsContainer.cs (1)
58await writer.WriteLineAsync(metadata.GetMetadata("Identity"));
Microsoft.ML.CodeGenerator.Tests (4)
UtilTest.cs (4)
126await file.WriteLineAsync("Label,STR,PATH,INT,DOUBLE,FLOAT,TrickySTR,SingleNan,SinglePositiveInfinity,SingleNegativeInfinity,EmptyString,One,T"); 127await file.WriteLineAsync("label1,feature1,/path/to/file,2,1.2,1.223E+10,ab\"\';@#$%^&-++==,NaN,Infinity,-Infinity,,1,T"); 161await file.WriteLineAsync("Label,STR,STR,PATH,INT,DOUBLE,FLOAT,FLOAT,TrickySTR,SingleNan,SinglePositiveInfinity,SingleNegativeInfinity,SingleNegativeInfinity,EmptyString,One,T"); 162await file.WriteLineAsync("label1,feature1,feature2,/path/to/file,2,1.2,1.223E+10,1.223E+11,ab\"\';@#$%^&-++==,NaN,Infinity,-Infinity,-Infinity,,1,T");
SocialWeather (1)
Pipe\PipeWeatherStreamFormatter.cs (1)
59await sw.WriteLineAsync(Encoding.ASCII.GetString(convertedBytes));