You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnetcore/fundamentals/middleware/request-response.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ These issues are fixable, but the code is becoming progressively more complicate
70
70
71
71
## Pipelines
72
72
73
-
When writing directly to `HttpResponse.BodyWriter`, call `PipeWriter.FlushAsync()` manually to ensure the data is flushed to the underlying response data structure. Here's why:
73
+
When writing directly to `HttpResponse.BodyWriter`, call `PipeWriter.FlushAsync()` manually to ensure the data is flushed to the underlying response response body. Here's why:
74
74
75
75
*`HttpResponse.BodyWriter` is a `PipeWriter` that buffers data until a flush operation is triggered.
76
76
* Calling `FlushAsync` writes the buffered data to the underlying network operation
0 commit comments