PipelineState 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.
Specifies the current execution status of the request process.
public enum class PipelineState
public enum PipelineState
type PipelineState =
Public Enum PipelineState
- Inheritance
-
PipelineState
Fields
Name | Value | Description |
---|---|---|
Unknown | 0 | IIS 7 is in an unknown state. |
BeginRequest | 1 | IIS 7 began processing a request. |
AuthenticateRequest | 2 | IIS 7 authenticated a request. |
AuthorizeRequest | 4 | IIS 7 authorized a request. |
ResolveRequestCache | 8 | IIS 7 satisfied a request from the cache. |
MapRequestHandler | 16 | IIS 7 mapped the request handler. |
AcquireRequestState | 32 | IIS 7 acquired the state for a request. |
PreExecuteRequestHandler | 64 | IIS 7 executed a request handler. |
ExecuteRequestHandler | 128 | IIS 7 executed a request handler. |
ReleaseRequestState | 256 | IIS 7 released the state for a request. |
UpdateRequestCache | 512 | IIS 7 updated the cache. |
LogRequest | 1024 | IIS 7 logged the request. |
EndRequest | 2048 | IIS 7 ended a request. |
SendResponse | 536870912 | IIS 7 sent a response. The event that is associated with this pipeline state is nondeterministic. |
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.