June 2002
Intermediate to advanced
816 pages
28h 12m
English
ApplicationHost
This class exposes a single shared CreateApplicationHost()
method, which allows you to create an application domain that will be used to process
ASP.NET requests. This method accepts three parameters—the hostType
(your request-handling class, which will be created in the new domain), virtualDir
(the virtual directory for the application domain, such as “/MyApp”), and physicalDir (the physical directory for the application domain where the
ASP.NET pages are located, such as “c:\MyApp”). The CreateApplicationHost()
method returns the live instance of the hostType class.
Public NotInheritable Class ApplicationHost ' Public Shared Methods Public Shared Function CreateApplicationHost( ByVal hostType As Type, ByVal virtualDir As String, ByVal physicalDir As String) As Object End Class
Read now
Unlock full access