ApplicationPoolDefaults.Enable32BitAppOnWin64 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 a value indicating whether to allow 32-bit applications to run on a computer that has a 64-bit processor.
public:
property bool Enable32BitAppOnWin64 { bool get(); void set(bool value); };
public bool Enable32BitAppOnWin64 { get; set; }
member this.Enable32BitAppOnWin64 : bool with get, set
Public Property Enable32BitAppOnWin64 As Boolean
Property Value
true
if 32-bit applications are enabled on 64-bit processors; otherwise, false
. The default is false
.
Examples
The following example displays the value of the Enable32BitAppOnWin64 property. This code example is part of a larger example provided for the ApplicationPoolDefaults class.
Console.WriteLine("Enable32BitAppOnWin64:\t{0}",
manager.ApplicationPoolDefaults.Enable32BitAppOnWin64.ToString());
Remarks
When the Enable32BitAppOnWin64 property is set to true
, a 32-bit application is allowed to run on a computer than has a 64-bit processor.