Example #1
0
 /// <summary>
 /// Alternate method for beginning a Custom Event and setting this Dynamic Object as the target
 /// </summary>
 /// <param name="engagementName">name of the event</param>
 /// <param name="uniqueEngagementId">if multiple events with the same name are expected on this object, this can be used to end specific events</param>
 /// <param name="properties">optional parameters to add to the custom event</param>
 public void BeginEngagement(string engagementName, string uniqueEngagementId = null, List <KeyValuePair <string, object> > properties = null)
 {
     DynamicManager.BeginEngagement(GetId(), engagementName, uniqueEngagementId, properties);
 }