ApplicationPoolDefaults.ManagedPipelineMode Property

Definition

Gets or sets a value that indicates the request-processing pipeline mode of managed applications in the application pool.

public:
 property Microsoft::Web::Administration::ManagedPipelineMode ManagedPipelineMode { Microsoft::Web::Administration::ManagedPipelineMode get(); void set(Microsoft::Web::Administration::ManagedPipelineMode value); };
public Microsoft.Web.Administration.ManagedPipelineMode ManagedPipelineMode { get; set; }
member this.ManagedPipelineMode : Microsoft.Web.Administration.ManagedPipelineMode with get, set
Public Property ManagedPipelineMode As ManagedPipelineMode

Property Value

One of the ManagedPipelineMode values. The default is Integrated.

Examples

The following example displays the value of the ManagedPipelineMode property. This code example is part of a larger example provided for the ApplicationPoolDefaults class.

Console.WriteLine("ManagedPipelineMode:\t{0}",
    manager.ApplicationPoolDefaults.ManagedPipelineMode.ToString());

Remarks

This property specifies whether the request-processing pipeline mode is Integrated or Classic.

You can use this property to configure the pipeline mode of a new application pool.

Applies to

See also