示例#1
0
        protected virtual void OnShowError(BackupEventArgs e)
        {
            EventHandler <BackupEventArgs> handler = ShowError;

            if (handler != null)
            {
                handler(this, e);
            }
        }
示例#2
0
        protected virtual void OnBackupComplete(BackupEventArgs e)
        {
            EventHandler <BackupEventArgs> handler = BackupComplete;

            if (handler != null)
            {
                handler(this, e);
            }
        }
示例#3
0
        protected virtual void OnProgress(BackupEventArgs e)
        {
            EventHandler <BackupEventArgs> handler = Progress;

            if (handler != null)
            {
                handler(this, e);
            }
        }
示例#4
0
        protected virtual void OnAccountStart(BackupEventArgs e)
        {
            EventHandler <BackupEventArgs> handler = AccountStart;

            if (handler != null)
            {
                handler(this, e);
            }
        }