/// <summary>
 /// Begins the BAM activity.
 /// </summary>
 public void BeginProcessMessagingStepActivity()
 {
     // Begin the Activity using the passed identifier
     OrchestrationEventStream.BeginActivity(nameof(ProcessMessagingStep), _activityId);
 }
Example #2
0
 /// <summary>
 /// Begins the BAM activity.
 /// </summary>
 public void BeginMessagingStepActivity()
 {
     // Begin the Activity using the passed identifier
     OrchestrationEventStream.BeginActivity(ActivityName, _activityId);
 }
 public void BeginActivity(string activityName, string activityInstance)
 {
     OrchestrationEventStream.BeginActivity(activityName, activityInstance);
 }