protected virtual void OnFoundBrokenFile(CheckerEventArgs e) { ChekerEventHandler handler = FoundBrokenFile; if (handler != null) { handler(this, e); } }
protected virtual void OnCheckProgress(CheckerEventArgs e) { ChekerEventHandler handler = CheckProgress; if (handler != null) { handler(this, e); } }
protected virtual void OnSwithState(CheckerEventArgs e) { ChekerEventHandler handler = SwithState; if (handler != null) { handler(this, e); } }