TypeBuilder.SetParent(Type) Method

Definition

Sets the base type of the type currently under construction.

public:
 void SetParent(Type ^ parent);
public void SetParent (Type? parent);
public void SetParent (Type parent);
member this.SetParent : Type -> unit
Public Sub SetParent (parent As Type)

Parameters

parent
Type

The new base type.

Exceptions

The type was previously created using CreateType().

-or-

parent is null, and the current instance represents an interface whose attributes do not include Abstract.

-or-

For the current dynamic type, the IsGenericType property is true, but the IsGenericTypeDefinition property is false.

parent is an interface. This exception condition is new in the .NET Framework version 2.0.

Remarks

If parent is null, Object is used as the base type.

In the .NET Framework versions 1.0 and 1.1, no exception is thrown if parent is an interface type, but a TypeLoadException is thrown when the CreateType method is called.

The SetParent method does not check for most invalid parent types. For example, it does not reject a parent type that has no parameterless constructor when the current type has a parameterless constructor, it does not reject sealed types, and it does not reject the Delegate type. In all these cases, exceptions are thrown by the CreateType method.

Applies to