Difference between revisions of "HowTo:Create UBIK Workflow Activity Plugin"
m |
|||
(16 intermediate revisions by the same user not shown) | |||
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'''. | |
− | + | ||
− | [[ | + | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
+ | = Example = | ||
<source lang="csharp"> | <source lang="csharp"> | ||
− | |||
using System; | using System; | ||
using System.Collections.Generic; | using System.Collections.Generic; | ||
Line 52: | Line 44: | ||
} | } | ||
} | } | ||
+ | </source> | ||
+ | <headertabs/> | ||
− | + | == See also == | |
− | + | * [[Injection_Management]] | |
− | + | * [[HowTo:Create_UBIK_Plugin]] | |
− | [http://msdn.microsoft.com/en-us/library/823z9h8w%28v=vs.110%29.aspx | + | * [http://msdn.microsoft.com/en-us/library/823z9h8w%28v=vs.110%29.aspx <probing> Element on MSDN] |
− | [[Category:Workflow]] | + | [[Category:How-To|Create UBIK Workflow Activity Plugin]] |
− | [[Category: | + | [[Category:Workflow|Create UBIK Workflow Activity Plugin]] |
+ | [[Category:Plugin|Create UBIK Workflow Activity Plugin]] |
Latest revision as of 12:04, 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.