TypeDelegator Constructors

Definition

Initializes a new instance of the TypeDelegator class.

Overloads

TypeDelegator()

Initializes a new instance of the TypeDelegator class with default properties.

TypeDelegator(Type)

Initializes a new instance of the TypeDelegator class specifying the encapsulating instance.

TypeDelegator()

Initializes a new instance of the TypeDelegator class with default properties.

protected:
 TypeDelegator();
protected TypeDelegator ();
Protected Sub New ()

Applies to

TypeDelegator(Type)

Initializes a new instance of the TypeDelegator class specifying the encapsulating instance.

public:
 TypeDelegator(Type ^ delegatingType);
public TypeDelegator (Type delegatingType);
new System.Reflection.TypeDelegator : Type -> System.Reflection.TypeDelegator
Public Sub New (delegatingType As Type)

Parameters

delegatingType
Type

The instance of the class Type that encapsulates the call to the method of an object.

Exceptions

delegatingType is null.

Remarks

This constructor is called from a class to generate a delegate based upon the Type object for the class defining the method.

Applies to