ApplicationPoolDefaults.ProcessModel Property
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.
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.