Inheritance: System.EventArgs
Exemplo n.º 1
0
        private void ErrorStateChangedCallback(Int32 status, IntPtr cookie)
        {
            EventHandler <ErrorStateEventArgs> handlers = this.errorStateChanged;

            if (handlers != null)
            {
                ErrorStateEventArgs args = new ErrorStateEventArgs(status);
                handlers(this, args);
            }
        }
Exemplo n.º 2
0
 private void ErrorStateChangedCallback(Int32 status, IntPtr cookie)
 {
     EventHandler<ErrorStateEventArgs> handlers = this.errorStateChanged;
     if (handlers != null)
     {
         ErrorStateEventArgs args = new ErrorStateEventArgs(status);
         handlers(this, args);
     }
 }
 private void context_ErrorStateChanged(object sender, ErrorStateEventArgs e)
 {
     onErrorOccured(sender, e.CurrentError);
     StopPlayback();
 }