Open
Description
*Describe the solution you'd like
Workflow Manager must be able to attached plugins to an export request message so that MIG knows what to do with the message, plugins can be one or more types.
New ExportRequestMessage
public class ExportRequestEvent : EventBase
{
...
/// <summary>
/// A list of data output plug-in type names to be executed by the export services.
/// Each string must be a fully-qualified type name.
/// E.g. <code>MyCompnay.MyProject.MyNamepsace.MyPlugin, MyCompnay.MyProject.MyNamepsace</code> where
/// <code>MyCompnay.MyProject.MyNamepsace</code> is the name of the assembly (DLL).
/// </summary>
public List<string> PluginAssemblies { get; private set; }
...