public bool OnError(Android.Media.MediaPlayer mp, Android.Media.MediaError what, int extra)
        {
            this.ParentElement.HasError     = true;
            this.ParentElement.ErrorMessage = what.ToString();

            this._HasEnded = true;
            // true handle, false allow pass
            return(false);
        }
Esempio n. 2
0
 public bool OnError(Android.Media.MediaPlayer mp, Android.Media.MediaError what, int extra)
 {
     this.RootPlayer.FireError(what.ToString());
     return(true);
 }