Workflow Activity - Save Workflow Activity Name to a variable using the 'Assign' activity

829 Views Asked by At

I'm actually embarrassed to ask this question but here goes.

In a workflow activity, how do I get the name of the current activity? For example, if I have a variable called "Name", how can I set that to the activity name. I have tried:

System.Reflection.MethodBase.GetCurrentMethod().Name

but it returns: "lambda_method"

My Google skills have failed today.

Here is an update, while debugging the Activity workflow, the watch windows says that 'this' is valid allows me to see the current activity name. But when I try to use 'this' inside of the assign block on the Workflow activity, it throws a compile error: Compiler error(s) encountered processing expression "this.activity.displayName". 'this' is not declared. It may be inaccessible due to its protection level.

2

There are 2 best solutions below

5
On BEST ANSWER

Use this.activity.displayName (which works in my Immediate Window when debugging a workflow)

1
On

Would this work?

System.Reflection.MethodBase.GetCurrentMethod().Name.ToString()