ApplicationManager.GetObject(String, Type) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从指定的应用程序返回指定类型的注册对象。
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
要返回的对象的类型。
返回
指定类型的已注册对象;如果还没有通过调用 CreateObject(String, Type, String, String, Boolean) 方法来注册该类型,则为 null
。