Exemplo n.º 1
0
        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);
        }
Exemplo n.º 2
0
 public bool OnError(Android.Media.MediaPlayer mp, Android.Media.MediaError what, int extra)
 {
     this.RootPlayer.FireError(what.ToString());
     return(true);
 }