4 writes to Output
Microsoft.AspNetCore.Hosting (4)
src\Shared\RazorViews\BaseView.cs (4)
68
Output
= new StreamWriter(buffer, UTF8NoBOM, 4096, leaveOpen: true);
86
Output
= new StreamWriter(buffer, UTF8NoBOM, 4096, leaveOpen: true);
104
Output
= writer;
109
Output
= _textWriterStack.Pop();
18 references to Output
Microsoft.AspNetCore.Hosting (18)
src\Shared\ErrorPage\ErrorPage.Designer.cs (1)
307
Output
.Write(HtmlEncodeAndReplaceLineBreaks(errorDetail.Error!.Message));
src\Shared\RazorViews\BaseView.cs (17)
70
await
Output
.FlushAsync();
71
await
Output
.DisposeAsync();
88
await
Output
.FlushAsync();
89
await
Output
.DisposeAsync();
103
_textWriterStack.Push(
Output
);
110
return
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
"/>.
130
Output
.Write(value);
152
Output
.Write(beginning);
162
Output
.Write(attributes);
165
Output
.Write(AttributeEnding);
239
result.WriteTo(
Output
);
243
/// Writes the specified <paramref name="value"/> to <see cref="
Output
"/>.
249
/// <see cref="
Output
"/>.
255
helperResult.WriteTo(
Output
);
264
/// Writes the specified <paramref name="value"/> with HTML encoding to <see cref="
Output
"/>.