WorkflowCompiler::Compile Method (WorkflowCompilerParameters^, array<String^>^)
Compiles a list of workflows contained in the files that are passed as parameters based on the WorkflowCompilerParameters.
Assembly: System.Workflow.ComponentModel (in System.Workflow.ComponentModel.dll)
public: WorkflowCompilerResults^ Compile( WorkflowCompilerParameters^ parameters, ... array<String^>^ files )
Parameters
- parameters
- Type: System.Workflow.ComponentModel.Compiler::WorkflowCompilerParameters^
- files
-
Type:
array<System::String^>^
A string array that contains the paths to the files to compile. These files can be either code files (such as .vb or .cs) or workflow markup files. Workflow markup files must have an .xoml extension to be recognized by the compiler.
Return Value
Type: System.Workflow.ComponentModel.Compiler::WorkflowCompilerResults^The WorkflowCompilerResults representing the results of the operation.
| Exception | Condition |
|---|---|
| ArgumentNullException | parameters is a null reference (Visual Basic Nothing). |
| ArgumentNullException | files is a null reference (Visual Basic Nothing). |
The following code example demonstrates how to use the Compile method. The code also creates new instances of the WorkflowCompiler and WorkflowCompilerParameters classes and sets some values. This code assumes that results is of type WorkflowCompilerResults. This code example is part of the Outlook Workflow Wizard SDK sample from the WizardForm.cs file. For more information, see Outlook Workflow Wizard.
Available since 3.0