HostingEnvironment.UnregisterObject Method (IRegisteredObject)

 

Removes an object from the list of registered objects for the application.

Namespace:   System.Web.Hosting
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.

Public Sub [Stop](ByVal immediate As Boolean) Implements System.Web.Hosting.IRegisteredObject.Stop
  For Each c As SampleComponent In components
    CType(c, IRegisteredObject).Stop(immediate)
  Next
  HostingEnvironment.UnregisterObject(Me)
End Sub

.NET Framework
Available since 2.0
Return to top
Show: