WorkflowCompilerParameters Class
Represents parameters passed to WorkflowCompiler during the compilation process.
Assembly: System.Workflow.ComponentModel (in System.Workflow.ComponentModel.dll)
The following code example demonstrates how to create a new instance of the WorkflowCompilerParameters class, add LibraryPaths and set the value for the CompilerParameters.OutputAssembly property. The code also creates a new instance of the WorkflowCompiler class and runs the WorkflowCompiler.Compile method. 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.
' Compile the workflow Dim assemblyNames() As String = {"ReadEmailActivity.dll"} Dim compiler As WorkflowCompiler = New WorkflowCompiler() Dim parameters As WorkflowCompilerParameters = New WorkflowCompilerParameters(assemblyNames) parameters.LibraryPaths.Add(Path.GetDirectoryName(GetType(BaseMailbox).Assembly.Location)) parameters.OutputAssembly = "CustomOutlookWorkflow" + Guid.NewGuid().ToString() + ".dll" results = compiler.Compile(parameters, Me.xamlFile)
System.CodeDom.Compiler.CompilerParameters
System.Workflow.ComponentModel.Compiler.WorkflowCompilerParameters
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.