Example #1
0
        private void onProgress(AsynchronousActionsEventArgs e)
        {
            AsynchronousActionsEventHandler handler = ActionProgress;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Example #2
0
        private void onStarted(AsynchronousActionsEventArgs e)
        {
            AsynchronousActionsEventHandler handler = ActionStarted;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Example #3
0
        protected void PostProgress(object obj)
        {
            AsynchronousActionsEventArgs e = obj as AsynchronousActionsEventArgs;

            if (e != null)
            {
                onProgress(e);
            }
        }
Example #4
0
        private void PostStarted(object obj)
        {
            AsynchronousActionsEventArgs e = obj as AsynchronousActionsEventArgs;

            if (e != null)
            {
                onStarted(e);
            }
        }
 private void onStarted(AsynchronousActionsEventArgs e)
 {
     AsynchronousActionsEventHandler handler = ActionStarted;
     if (handler != null)
         handler(this, e);
 }
 private void onProgress(AsynchronousActionsEventArgs e)
 {
     AsynchronousActionsEventHandler handler = ActionProgress;
     if (handler != null)
         handler(this, e);
 }