ClientBuildManager.CreateObject(Type, Boolean) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在 ASP.NET 執行階段的應用程式定義域中建立物件。
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
參數
- type
- Type
要建立的物件類型。
- failIfExists
- Boolean
如果物件已在 ASP.NET 執行階段的應用程式定義域中建立時,要擲回例外狀況 (Exception) 則為 true
,否則為 false
。
傳回
在 ASP.NET 執行階段的應用程式定義域中的物件。
例外狀況
type
為 null
。
物件已經存在於應用程式定義域中,且 failIfExists
為 true
。