ApplicationPoolFailure.AutoShutdownParams 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 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);