ParseAnalytics ClassParse
Provides an interface to Parse's logging and analytics backend. Methods will return immediately and cache requests (along with timestamps) to be handled in the background.
Inheritance Hierarchy

SystemObject
  ParseParseAnalytics

Namespace: Parse
Assembly: Parse.WinRT (in Parse.WinRT.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax

public static class ParseAnalytics
Methods

  NameDescription
Public methodStatic memberTrackAppOpenedAsync
Tracks this application being launched.
Public methodStatic memberTrackAppOpenedAsync(ILaunchActivatedEventArgs)
Tracks this application being launched. If the LaunchActivatedEventArgs parameter contains push data passed through from a Toast's "launch" parameter, then we extract and report information to correlate this application open with that push.
Public methodStatic memberTrackEventAsync(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);
There is a default limit of 8 dimensions per event tracked.
Public methodStatic memberTrackEventAsync(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);
There is a default limit of 8 dimensions per event tracked.
Top
See Also

Reference