RequestQueueMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Used to indicate if this server instance should create a new Http.Sys request queue or attach to an existing one.
public enum class RequestQueueMode
public enum RequestQueueMode
type RequestQueueMode =
Public Enum RequestQueueMode
- Inheritance
-
RequestQueueMode
Fields
Name | Value | Description |
---|---|---|
Create | 0 | Create a new queue. This will fail if there's an existing queue with the same name. |
Attach | 1 | Attach to an existing queue with the name given. This will fail if the queue does not already exist. Most configuration options do not apply when attaching to an existing queue. |
CreateOrAttach | 2 | Create a queue with the given name if it does not already exist, otherwise attach to the existing queue. Most configuration options do not apply when attaching to an existing queue. |