ActivityCodeGeneratorAttribute Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.