AgilePart Project Template > Runtime
Runtime behavior occurs on the AgilePoint Server as the custom activity executes.
Good to Know
- You can assemble the runtime logic or business logic of your custom system activity with C# code in the AgilePart.cs file.
- A system activity runtime class must inherit from the WFAgilePart base class.
- The C# class can be converted to a system activity runtime class by inheriting the WFAgilePart class and adding the [AgilePart("")] attribute to the runtime class.
- The default activity runtime method is method1.
- You can add activity runtime methods to the class by adding a C# method.
- The runtime method for the activity must have the attribute, [Description("Put description here"), AgilePartDescriptor(typeof(MyAgilePartDescriptor))]
How to Start
- Create a new project in AgilePoint NX Developer.
- In the project folder Runtime, open the file AgilePart.cs.