ActivityCodeGeneratorAttribute Constructors

Definition

Initializes a new instance of the ActivityCodeGeneratorAttribute class.

Overloads

ActivityCodeGeneratorAttribute(String)

Initializes a new instance of the ActivityCodeGeneratorAttribute class, also initializing the CodeGeneratorTypeName.

ActivityCodeGeneratorAttribute(Type)

Initializes a new instance of the ActivityCodeGeneratorAttribute class from a code generator Type.

ActivityCodeGeneratorAttribute(String)

Initializes a new instance of the ActivityCodeGeneratorAttribute class, also initializing the CodeGeneratorTypeName.

public:
 ActivityCodeGeneratorAttribute(System::String ^ codeGeneratorTypeName);
public ActivityCodeGeneratorAttribute (string codeGeneratorTypeName);
new System.Workflow.ComponentModel.Compiler.ActivityCodeGeneratorAttribute : string -> System.Workflow.ComponentModel.Compiler.ActivityCodeGeneratorAttribute
Public Sub New (codeGeneratorTypeName As String)

Parameters

codeGeneratorTypeName
String

The specified value for CodeGeneratorTypeName.

Exceptions

codeGeneratorTypeName is a null reference (Nothing in Visual Basic).

Applies to

ActivityCodeGeneratorAttribute(Type)

Initializes a new instance of the ActivityCodeGeneratorAttribute class from a code generator Type.

public:
 ActivityCodeGeneratorAttribute(Type ^ codeGeneratorType);
public ActivityCodeGeneratorAttribute (Type codeGeneratorType);
new System.Workflow.ComponentModel.Compiler.ActivityCodeGeneratorAttribute : Type -> System.Workflow.ComponentModel.Compiler.ActivityCodeGeneratorAttribute
Public Sub New (codeGeneratorType As Type)

Parameters

codeGeneratorType
Type

The Type to initialize the instance from.

Exceptions

codeGeneratorType is a null reference (Nothing in Visual Basic).

codeGeneratorType is not assignable to the type of a code generator or has no parameterless constructor.

Applies to