Table of Contents

Method LogEvent

Namespace
Titipi.MocaLib

LogEvent(string)

Logs a named custom event with no additional data.

public static void LogEvent(string eventName)

Parameters

eventName string

LogEvent(string, Dictionary<string, string>)

Logs a named custom 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>)

Logs a named custom event with object key-value parameters. All values are converted to strings before being sent to ByteBrew.

public static void LogEvent(string eventName, Dictionary<string, object> data)

Parameters

eventName string
data Dictionary<string, object>