ApplicationManager.GetObject(String, Type) 方法

定义

从指定的应用程序返回指定类型的注册对象。

public:
 System::Web::Hosting::IRegisteredObject ^ GetObject(System::String ^ appId, Type ^ type);
public System.Web.Hosting.IRegisteredObject GetObject (string appId, Type type);
member this.GetObject : string * Type -> System.Web.Hosting.IRegisteredObject
Public Function GetObject (appId As String, type As Type) As IRegisteredObject

参数

appId
String

拥有该对象的应用程序的唯一标识符。

type
Type

要返回的对象的类型。

返回

IRegisteredObject

指定类型的已注册对象;如果还没有通过调用 CreateObject(String, Type, String, String, Boolean) 方法来注册该类型,则为 null

例外

appIdnull

  • 或 - typenull

适用于