ClientBuildManager.CreateObject(Type, Boolean) 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.
Creates an object in the application domain of the ASP.NET runtime.
public:
System::Web::Hosting::IRegisteredObject ^ CreateObject(Type ^ type, bool failIfExists);
public System.Web.Hosting.IRegisteredObject CreateObject (Type type, bool failIfExists);
member this.CreateObject : Type * bool -> System.Web.Hosting.IRegisteredObject
Public Function CreateObject (type As Type, failIfExists As Boolean) As IRegisteredObject
Parameters
- type
- Type
The type of object to be created.
- failIfExists
- Boolean
true
to throw an exception if the object has already been created in the application domain of the ASP.NET runtime; otherwise, false
.
Returns
An object in the application domain of the ASP.NET runtime.
Exceptions
type
is null
.
The object already exists in the application domain and failIfExists
is true
.