We have implemented a class ActivityException
, where the constructor accepts (amongst others) an argument of type System.Activities.Activity
. This argument is used to create an error message that contains Activity.DisplayName
and Activity.Id
.
This works very fine for WF4 activities written in C#. Here I can use something like:
throw new ActivityException(this, ...)
But now I am implementing a WF4 activity in xaml format (i.e. using workflow editor). If I throw an exception here, I have to use the System.Activities.Statements.Throw
activity. I filled the Exception
parameter of this activity as follows:
new ActivityException(Me, ...)
But the workflow editor says: "'Me' is valid only within an instance method".
I also tried 'this' instead of 'Me', but this produces an error message, too.
Does anybody have an idea how to solve this problem?
If the form name is MainWindow for example you could do:
MainWindow mw = new MainWindow; new ActivityException(mw, ...)