How do you express an activitybind in xoml when the path needs to point to a registerattached property
I've defined my own CompositeActivity class with one dependencyproperty added using the RegisterAttached method. A little like the PrioritizedInterleaveActivity in Essential WWF.
This activity is used in a xoml. It has a single child activity, a Sequence. The sequence has a number of activities. One of the activities needs the actual value of the dependency property attached to the sequence. But how do you express that in xoml
"{ActivityBind MySequence,Path=PrioritizedInterleaveActivity.Priority}" does not seems to work. It results in the following error:
error 1549: Activity 'PrintLine' validation failed: Path 'PrioritizedInterleave.Priority' used to specify member for 'MySequence' is invalid. Path needs to point to valid member.
Thans for your help.