4 writes to Output
Microsoft.AspNetCore.Diagnostics (4)
src\Shared\RazorViews\BaseView.cs (4)
68Output = new StreamWriter(buffer, UTF8NoBOM, 4096, leaveOpen: true); 86Output = new StreamWriter(buffer, UTF8NoBOM, 4096, leaveOpen: true); 104Output = writer; 109Output = _textWriterStack.Pop();
19 references to Output
Microsoft.AspNetCore.Diagnostics (19)
DeveloperExceptionPage\Views\ErrorPage.Designer.cs (2)
360Output.Write(HtmlEncodeAndReplaceLineBreaks(errorDetail.Error.Message)); 1363Output.Write(HtmlEncodeAndReplaceLineBreaks(metadata.ToString() ?? string.Empty));
src\Shared\RazorViews\BaseView.cs (17)
70await Output.FlushAsync(); 71await Output.DisposeAsync(); 88await Output.FlushAsync(); 89await Output.DisposeAsync(); 103_textWriterStack.Push(Output); 110return Output; 114/// Write the given value without HTML encoding directly to <see cref="Output"/>. 123/// Write the given value without HTML encoding directly to <see cref="Output"/>. 130Output.Write(value); 152Output.Write(beginning); 162Output.Write(attributes); 165Output.Write(AttributeEnding); 239result.WriteTo(Output); 243/// Writes the specified <paramref name="value"/> to <see cref="Output"/>. 249/// <see cref="Output"/>. 255helperResult.WriteTo(Output); 264/// Writes the specified <paramref name="value"/> with HTML encoding to <see cref="Output"/>.