RequestQueueMode Enum

Definition

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

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.

Create 0

Create a new queue. This will fail if there's an existing queue with the same name.

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.

Applies to