ApplicationPoolFailure.AutoShutdownParams Property

Definition

Gets or sets command-line parameters for the executable that is specified by the AutoShutdownExe property.

public:
 property System::String ^ AutoShutdownParams { System::String ^ get(); void set(System::String ^ value); };
public string AutoShutdownParams { get; set; }
member this.AutoShutdownParams : string with get, set
Public Property AutoShutdownParams As String

Property Value

The command-line parameters for the executable specified by the AutoShutdownExe property.

Examples

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

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

Applies to