Exemple #1
0
        protected bool OnExceptionThrown(FirebaseException ex, bool ignore)
        {
            var args = new ContinueExceptionEventArgs <FirebaseException>(ex, ignore);

            this.ExceptionThrown?.Invoke(this, args);

            return(args.IgnoreAndContinue);
        }
 protected void OnStreamingExceptionThrown(object sender, ContinueExceptionEventArgs <FirebaseException> e)
 {
     this.StreamingExceptionThrown?.Invoke(this, e);
 }