HostingEnvironment.InitiateShutdown Method

Definition

Starts shutting down the web application associated with this host and removes registered objects from the system.

public:
 static void InitiateShutdown();
public static void InitiateShutdown ();
static member InitiateShutdown : unit -> unit
Public Shared Sub InitiateShutdown ()

Remarks

Use the InitiateShutdown method to stop a web application domain and remove any objects registered with the RegisterObject method. This method returns immediately, before the shutdown is complete.

The Stop method is called on each registered object with the passed parameter set to false to allow each registered object to shut down asynchronously. After waiting for the amount of time specified in the shutdownTimeout attribute of the <hostingEnvironment> configuration element, the Stop method is called again with the passed parameter set to true for each registered object remaining.

Once all registered objects have finished shutting down, the HostingEnvironment objects shuts down the application domain.

Applies to