ApplicationPoolDefaults.ProcessModel Property

Definition

Gets the process management attributes for an application pool.

public:
 property Microsoft::Web::Administration::ApplicationPoolProcessModel ^ ProcessModel { Microsoft::Web::Administration::ApplicationPoolProcessModel ^ get(); };
public Microsoft.Web.Administration.ApplicationPoolProcessModel ProcessModel { get; }
member this.ProcessModel : Microsoft.Web.Administration.ApplicationPoolProcessModel
Public ReadOnly Property ProcessModel As ApplicationPoolProcessModel

Property Value

An ApplicationPoolProcessModel object.

Examples

The following example displays the values of the IdentityType and Password properties. This code example is part of a larger example provided for the ApplicationPoolDefaults class.

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

Remarks

You can use the properties and methods of the object returned by the ProcessModel property to configure the process management attributes of a new application pool.

Applies to

See also