IPropertyRoutingCondition
- Last UpdatedJun 10, 2024
- 1 minute read
This interface has to be implemented by the custom property to return the dynamic routing condition values from the property.
GetRoutingConditionValues method will be available in the custom propety class which implements IPropertyRoutingCondition which returns SortedList which will be seen in the Process Designer when we link the custom action which uses this property to another Activity.
We have to define the Link tag under the Custom Activity Return tag Section.
<link property="PropertyNameAttribute" >;
Say we want to dynamically route the values based on the custom property named "SampleProperty", then we have to give the link tag under the Custom Activity Return tag Section like below.
<link property="SampleProperty" >;