We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f58c29 commit 8bab6b5Copy full SHA for 8bab6b5
src/Servers/HttpSys/src/RequestQueueMode.cs
@@ -3,6 +3,10 @@
3
4
namespace Microsoft.AspNetCore.Server.HttpSys
5
{
6
+ /// <summary>
7
+ /// Used to indicate if this server instance should create a new Http.Sys request queue
8
+ /// or attach to an existing one.
9
+ /// </summary>
10
public enum RequestQueueMode
11
12
/// <summary>
@@ -16,6 +20,7 @@ public enum RequestQueueMode
16
20
Attach,
17
21
18
22
/// Create a queue with the given name if it does not already exist, otherwise attach to the existing queue.
23
+ /// Most configuration options do not apply when attaching to an existing queue.
19
24
/// </summary>
25
CreateOrAttach
26
}
0 commit comments