ProcessHost.SetApplicationPreloadState(String, String, Boolean) Method
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.
Notifies ASP.NET that a particular application that is running on IIS 7.0 is configured to be preloaded.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
virtual void SetApplicationPreloadState(System::String ^ context, System::String ^ appId, bool enabled);
public void SetApplicationPreloadState (string context, string appId, bool enabled);
abstract member SetApplicationPreloadState : string * string * bool -> unit
override this.SetApplicationPreloadState : string * string * bool -> unit
Public Sub SetApplicationPreloadState (context As String, appId As String, enabled As Boolean)
Parameters
- context
- String
The application context.
- appId
- String
The unique ID of the application.
- enabled
- Boolean
true
to indicate the application should be preloaded; otherwise, false
.
Implements
Exceptions
The IApplicationPreloadUtil instance that contains information for preloading the application is null
or empty.
-or-
appId
is null
or empty.
-or-
enabled
is set to true
and the process host was not previously passed an IApplicationPreloadUtil interface to its SetApplicationPreloadUtil(IApplicationPreloadUtil) method
Remarks
This method implements the SetApplicationPreloadState method of the IApplicationPreloadManager interface. IIS 7.0 calls the SetApplicationPreloadState method to notify ASP.NET whether the application that is being loaded supports preloading.
Note
This method applies only to applications that run on IIS 7.0.