HostingEnvironment.InitiateShutdown 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.
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.