HostingEnvironment.UnregisterObject Method (IRegisteredObject)
.NET Framework (current version)
Removes an object from the list of registered objects for the application.
Assembly: System.Web (in System.Web.dll)
<SecurityPermissionAttribute(SecurityAction.Demand, Unrestricted := True)> Public Shared Sub UnregisterObject ( obj As IRegisteredObject )
Parameters
- obj
-
Type:
System.Web.Hosting.IRegisteredObject
The object to remove.
The ApplicationManager class enables methods outside the current application domain to create, manage, and destroy objects inside the current application domain. The UnregisterObject method is used to remove previously registered objects from the hosting environment.
The following code example is the Stop method for a registered object. For the full code required to run the example, see the Example section of the IRegisteredObject interface overview topic.
.NET Framework
Available since 2.0
Available since 2.0
Show: