Overload List
Name | Description | |
---|---|---|
TrackEventAsync(String) |
Tracks the occurrence of a custom event with additional dimensions.
Parse will store a data point at the time of invocation with the
given event name.
Dimensions will allow segmentation of the occurrences of this
custom event.
To track a user signup along with additional metadata, consider the
following:
IDictionary<string, string> dims = new Dictionary<string, string> { { "gender", "m" }, { "source", "web" }, { "dayType", "weekend" } }; ParseAnalytics.TrackEventAsync("signup", dims); | |
TrackEventAsync(String, IDictionaryString, String) |
Tracks the occurrence of a custom event with additional dimensions.
Parse will store a data point at the time of invocation with the
given event name.
Dimensions will allow segmentation of the occurrences of this
custom event.
To track a user signup along with additional metadata, consider the
following:
IDictionary<string, string> dims = new Dictionary<string, string> { { "gender", "m" }, { "source", "web" }, { "dayType", "weekend" } }; ParseAnalytics.TrackEventAsync("signup", dims); |
See Also