예제 #1
0
 /// <summary>
 /// This method serves as the entry point to Flurry Analytics collection.
 /// The session will continue for the period the app is in the foreground until your app is backgrounded for the
 /// time specified in <see cref="SetSessionContinueTimeout"/>. If the app is resumed in that period the session
 /// will continue, otherwise a new session will begin.
 /// </summary>
 /// <remarks>
 /// This method requires that the <see cref="ApiKey"/> property has been set prior to calling this method. If
 /// not, an ArgumentException will be thrown.
 /// </remarks>
 /// <exception cref="ArgumentException">
 /// This method requires that the <see cref="ApiKey"/> property has been set prior to calling this method. If
 /// not, an ArgumentException will be thrown.
 /// </exception>
 public static void StartSession()
 {
     NativeFlurry.StartSession(ApiKey);
 }