Esempio n. 1
0
 /// <inheritdoc />
 public override void RaiseEvent(OrchestrationContext context, string name, string input)
 {
     CheckInnerOrchestration();
     context = new WrapperOrchestrationContext(context);
     InnerOrchestration.RaiseEvent(context, name, input);
 }
Esempio n. 2
0
 /// <inheritdoc />
 public override Task <string> Execute(OrchestrationContext context, string input)
 {
     CheckInnerOrchestration();
     context = new WrapperOrchestrationContext(context);
     return(InnerOrchestration.Execute(context, input));
 }