You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <para>Sends event data to all connected analytic services such as Firebase, Adjust, AppsFlyer and Facebook.</para>
725
+
/// Sends event data to selected analytic services such as Adjust, AppsFlyer, Facebook, or Firebase.<br/>
726
726
/// See <see href="https://docs.appodeal.com/unity/advanced/event-tracking?distribution=upm#step-1-how-to-track-in-app-events"/> for more details.
727
727
/// </summary>
728
+
/// <param name="eventName">the name of the event.</param>
729
+
/// <param name="eventParams">optional parameters associated with the event.</param>
730
+
/// <param name="services">target services to send the event to. Defaults to all connected services.</param>
728
731
/// <remarks>
729
-
/// <para>Event parameter values must be one of the following types: <see langword="string"/>, <see langword="double"/>, or <see langword="int"/></para>
730
-
/// If event has no params, call the shorten version of this method by passing only name of the event.
732
+
/// For the <c>eventParams</c> argument, every dictionary value should be either a <c>string</c>, <c>double</c>, or <c>int</c>.<br/>
733
+
/// Use the named argument <c>services:</c> if you want to specify target services while omitting the second optional argument.
731
734
/// </remarks>
732
-
/// <param name="eventName">name of the event.</param>
733
-
/// <param name="eventParams">parameters of the event if any.</param>
/// <example>Send event to all connected services w/o params:<code>Appodeal.LogEvent("eventName");</code></example>
736
+
/// <example>Send event to all connected services w/ params:<code>Appodeal.LogEvent("eventName", eventParams);</code></example>
737
+
/// <example>Send event to a group of services w/o params:<code>Appodeal.LogEvent("eventName", services:AppodealService.AppsFlyer | AppodealService.Facebook);</code></example>
738
+
/// <example>Send event to a specific service w/ params:<code>Appodeal.LogEvent("eventName", eventParams, AppodealService.Adjust);</code></example>
if(CheckIfLoggingEnabled())Debug.Log("Calling Appodeal.LogEvent method on an unsupported platform. Run your application on either Android or iOS device to test this method.");
0 commit comments