Difference between revisions of "HowTo:Create UBIK Workflow Activity Plugin"
m |
m |
||
Line 3: | Line 3: | ||
The interface <code lang="csharp">IUBIKActivity</code> is located in the library '''UBIK.WorkflowBase.dll'''. | The interface <code lang="csharp">IUBIKActivity</code> is located in the library '''UBIK.WorkflowBase.dll'''. | ||
− | + | {{Attention|The injection of workflow activities is only supported if the plugin is placed within ''Injection'' under the {{UBIK}} installation directory. Make also sure this folder is configured as ''probing'' path in the config file.}} | |
+ | |||
+ | = Example = | ||
<source lang="csharp"> | <source lang="csharp"> | ||
using System; | using System; | ||
Line 48: | Line 50: | ||
</source> | </source> | ||
− | + | <headertabs/> | |
− | + | ||
== See also == | == See also == |
Revision as of 11:21, 3 August 2016
You can add new workflow activities to your UBIK® system via a plugin loaded by the Injection Management. The new activity needs to be implemented in an UBIK® plugin which has to implement the interface UBIK.WorkflowBase.IUBIKActivity and inherit from System.Activities.NativeActivity<T>.
The interface IUBIKActivity
is located in the library UBIK.WorkflowBase.dll.