ICustomFactory.CreateInstance(Type) Method

Definition

Creates a new instance of the specified type.

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

Parameters

serverType
Type

The type to activate.

Returns

A MarshalByRefObject associated with the specified type.

Remarks

CreateInstance is called by the common language runtime when a new object of the specified type needs to be created. Override this method to provide your own custom class factory.

Applies to