Method LogEvent
LogEvent(string)
Logs a named custom event with no additional data.
public static void LogEvent(string eventName)
Parameters
eventNamestring
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
eventNamestringdataDictionary<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
eventNamestringdataDictionary<string, object>