Created
December 12, 2018 20:46
-
-
Save flurrydev/e911b67013cdb8397679d75d0f092d61 to your computer and use it in GitHub Desktop.
Flurry: Methods to log Flurry events
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Flurry.EventRecordStatus LogEvent(string eventId); | |
| Flurry.EventRecordStatus LogEvent(string eventId, bool timed); | |
| Flurry.EventRecordStatus LogEvent(string eventId, Dictionary<string, string> parameters); | |
| Flurry.EventRecordStatus LogEvent(string eventId, Dictionary<string, string> parameters, bool timed); | |
| void EndTimedEvent(string eventId); | |
| void EndTimedEvent(string eventId, Dictionary<string, string> parameters); | |
| void OnPageView(); | |
| void OnError(string errorId, string message, string errorClass); | |
| void OnError(string errorId, string message, string errorClass, Dictionary<string, string> parameters); | |
| void LogBreadcrumb(string crashBreadcrumb); | |
| Flurry.EventRecordStatus LogPayment(string productName, string productId, int quantity, double price, | |
| string currency, string transactionId, Dictionary<string, string> parameters); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment