Difference between revisions of "HowTo:Create UBIK Workflow Activity Plugin"
m |
m |
||
Line 1: | Line 1: | ||
− | + | New workflow activities can be injected into {{UBIK}} using the [[Injection_Management|Injection Management]]. The plugin needs be implement the interface '''UBIK.WorkflowBase.IUBIKActivity''' and inherit from '''System.Activities.NativeActivity<T>'''. 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'''. | + | |
− | + | ||
− | + | ||
= Example = | = Example = |
Revision as of 11:34, 3 August 2016
New workflow activities can be injected into UBIK® using the Injection Management. The plugin needs be implement the interface UBIK.WorkflowBase.IUBIKActivity and inherit from System.Activities.NativeActivity<T>. The interface IUBIKActivity
is located in the library UBIK.WorkflowBase.dll.