|
Hi,
I would like to ask if there exists any possibility for adding events during runtime, because I am also adding new workflows during runtime, which communicate with each other with use of HandleExternalEventActivity and CallExternalMethod, but as already mentioned event does not exist.
My question is how to set EventName if event does not exist in interface yet.
[ ExternalDataExchange]
public interface ICommunicationService
{
event EventHandler<ExternalDataEventArgs> NoRiskEvent;
// HERE I WANT TO ADD EVENTS DURING RUNTIME
}
Is it possible???
Thank you,
Peter |