Example #1
0
 /// <summary>
 /// Alternate method to end a Custom Event on a specific Dynamic Object. If the event does not exist, creates and immediately ends the event
 /// </summary>
 /// <param name="engagementName">the name of the Event to end</param>
 /// <param name="uniqueEngagementId">identifies the event to end, regardless of name</param>
 /// <param name="properties">any properties to add to this event before it ends</param>
 public void EndEngagement(string engagementName, string uniqueEngagementId = null, List <KeyValuePair <string, object> > properties = null)
 {
     DynamicManager.EndEngagement(GetId(), engagementName, uniqueEngagementId, properties);
 }