Table of Contents

Method LogEvent

Namespace
Titipi.MocaLib2

LogEvent(string)

Sends a named AppsFlyer event with no additional parameters.

public static void LogEvent(string eventName)

Parameters

eventName string

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

eventName string
data Dictionary<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

eventName string
data Dictionary<string, object>