What is the syntax for loading a .NET 4.0 Beta2 workflow that was previously created and stored as XAML.
The WorkflowElement and WorkflowXamlServices classes no longer exist. I am trying to do something like this (that worked in Beta 1):
WorkflowElement wf = WorkflowXamlServices.Load(File.OpenRead("Workflow.xaml")) as WorkflowElement;
Found my own answer after further research.
The WorkflowElement and WorkflowXamlServices classes have been removed from Beta2. The approach above requires the use of DynamicActivity and ActivityXamlServices.
DynamicActivity wf = ActivityXamlServices.Load("Workflow.xaml") as DynamicActivity;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With