ICustomFactory.CreateInstance(Type) 方法

定义

创建指定类型的新实例。

public:
 MarshalByRefObject ^ CreateInstance(Type ^ serverType);
public MarshalByRefObject CreateInstance (Type serverType);
abstract member CreateInstance : Type -> MarshalByRefObject
Public Function CreateInstance (serverType As Type) As MarshalByRefObject

参数

serverType
Type

要激活的类型。

返回

与指定类型关联的 MarshalByRefObject

注解

CreateInstance 当需要创建指定类型的新对象时,由公共语言运行时调用。 重写此方法以提供你自己的自定义类工厂。

适用于