Method LogEvent
LogEvent(string)
Sends a named AppsFlyer event with no additional parameters.
public static void LogEvent(string eventName)
Parameters
eventNamestring
LogEvent(string, Dictionary<string, string>)
Sends a named AppsFlyer event with string key-value parameters.
public static void LogEvent(string eventName, Dictionary<string, string> data)
Parameters
eventNamestringdataDictionary<string, string>
LogEvent(string, Dictionary<string, object>)
Sends a named AppsFlyer event with mixed-type key-value parameters.
All values are converted to strings before being sent to the AppsFlyer SDK,
which only accepts Dictionary<string, string>.
public static void LogEvent(string eventName, Dictionary<string, object> data)
Parameters
eventNamestringdataDictionary<string, object>