ClientBuildManager.CreateObject(Type, Boolean) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Crea un oggetto nel dominio applicazione di 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
Parametri
- type
- Type
Tipo di oggetto da creare.
- failIfExists
- Boolean
true
per generare un'eccezione se l'oggetto è già stato creato nel dominio applicazione di ASP.NET runtime; in caso contrario false
.
Restituisce
Oggetto nel dominio applicazione di ASP.NET runtime.
Eccezioni
type
è null
.
L'oggetto esiste già nel dominio applicazione e failIfExists
è true
.