ApplicationManager.CreateObject Method (IApplicationHost, Type)

 

Creates an object for the specified application domain, based on type.

Namespace:   System.Web.Hosting
Assembly:  System.Web (in System.Web.dll)

[SecurityPermissionAttribute(SecurityAction.Demand, Unrestricted = true)]
public IRegisteredObject CreateObject(
	IApplicationHost appHost,
	Type type
)

Parameters

appHost
Type: System.Web.Hosting.IApplicationHost

An IApplicationHost object.

type
Type: System.Type

The type of the object to create.

Return Value

Type: System.Web.Hosting.IRegisteredObject

A new object of the type specified in type.

Exception Condition
ArgumentException

A physical path for the application does not exist.

ArgumentNullException

appHost is null.

- or -

type is null.

CreateObject is introduced in the .NET Framework version 3.5. For more information, see .NET Framework Versions and Dependencies.

.NET Framework
Available since 2.0
Return to top
Show: