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: src/Hosting/TestHost/src/TestServer.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -81,9 +81,9 @@ public IWebHost Host
81
81
/// Gets or sets a value that controls whether synchronous IO is allowed for the <see cref="HttpContext.Request"/> and <see cref="HttpContext.Response"/>
Copy file name to clipboardExpand all lines: src/Servers/IIS/IIS/src/IISServerOptions.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,9 @@ public class IISServerOptions
11
11
/// Gets or sets a value that controls whether synchronous IO is allowed for the <see cref="HttpContext.Request"/> and <see cref="HttpContext.Response"/>
12
12
/// </summary>
13
13
/// <remarks>
14
-
/// Defaults to true.
14
+
/// Defaults to false.
15
15
/// </remarks>
16
-
publicboolAllowSynchronousIO{get;set;}=true;
16
+
publicboolAllowSynchronousIO{get;set;}=false;
17
17
18
18
/// <summary>
19
19
/// If true the server should set HttpContext.User. If false the server will only provide an
Copy file name to clipboardExpand all lines: src/Servers/Kestrel/Core/src/KestrelServerOptions.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -50,9 +50,9 @@ public class KestrelServerOptions
50
50
/// Gets or sets a value that controls whether synchronous IO is allowed for the <see cref="HttpContext.Request"/> and <see cref="HttpContext.Response"/>
51
51
/// </summary>
52
52
/// <remarks>
53
-
/// Defaults to true.
53
+
/// Defaults to false.
54
54
/// </remarks>
55
-
publicboolAllowSynchronousIO{get;set;}=true;
55
+
publicboolAllowSynchronousIO{get;set;}=false;
56
56
57
57
/// <summary>
58
58
/// Enables the Listen options callback to resolve and use services registered by the application during startup.
0 commit comments