PipelineState Enum

Definition

Specifies the current execution status of the request process.

public enum class PipelineState
public enum PipelineState
type PipelineState = 
Public Enum PipelineState
Inheritance
PipelineState

Fields

AcquireRequestState 32

IIS 7 acquired the state for a request.

AuthenticateRequest 2

IIS 7 authenticated a request.

AuthorizeRequest 4

IIS 7 authorized a request.

BeginRequest 1

IIS 7 began processing a request.

EndRequest 2048

IIS 7 ended a request.

ExecuteRequestHandler 128

IIS 7 executed a request handler.

LogRequest 1024

IIS 7 logged the request.

MapRequestHandler 16

IIS 7 mapped the request handler.

PreExecuteRequestHandler 64

IIS 7 executed a request handler.

ReleaseRequestState 256

IIS 7 released the state for a request.

ResolveRequestCache 8

IIS 7 satisfied a request from the cache.

SendResponse 536870912

IIS 7 sent a response. The event that is associated with this pipeline state is nondeterministic.

Unknown 0

IIS 7 is in an unknown state.

UpdateRequestCache 512

IIS 7 updated the cache.

Remarks

Each value in this enumeration, except for Unknown, corresponds to an event in the IIS 7 integrated request-processing pipeline. The Microsoft.Web.Administration.Request.PipelineState property gets its value from this enumeration.

Applies to