Attach() static private method

static private Attach ( RaygunClient raygunClient ) : void
raygunClient RaygunClient
return void
Example #1
0
        /// <summary>
        /// Causes Raygun to automatically send session and view events for Raygun Pulse.
        /// </summary>
        /// <param name="mainActivity">The main/entry activity of the Android app.</param>
        /// <returns>The RaygunClient to chain other methods.</returns>
        public RaygunClient AttachPulse(Activity mainActivity)
        {
            RaygunLogger.Debug("Enabling Real User Monitoring");

            Pulse.Attach(this, mainActivity);

            return(this);
        }
Example #2
0
 /// <summary>
 /// Causes Raygun to automatically send session and view events for Raygun Pulse.
 /// </summary>
 /// <param name="mainActivity">The main/entry activity of the Android app.</param>
 /// <returns>The RaygunClient to chain other methods.</returns>
 public RaygunClient AttachPulse(Activity mainActivity)
 {
     Pulse.Attach(this, mainActivity);
     return(this);
 }
Example #3
0
 /// <summary>
 /// Causes Raygun to automatically send session and view events for Raygun Pulse.
 /// </summary>
 /// <returns>The RaygunClient to chain other methods.</returns>
 public RaygunClient AttachPulse()
 {
     Pulse.Attach(this);
     return(this);
 }