From df4d3dc6d63cc333780b349d1847212fc8b1aaa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20=C3=87otur?= Date: Fri, 6 Mar 2020 21:11:30 +0300 Subject: [PATCH] Update Background-Workers.md --- docs/en/Background-Workers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/Background-Workers.md b/docs/en/Background-Workers.md index 2257c0c2c2..5da2c7532e 100644 --- a/docs/en/Background-Workers.md +++ b/docs/en/Background-Workers.md @@ -45,7 +45,7 @@ public class PassiveUserCheckerWorker : AsyncPeriodicBackgroundWorkerBase ```` * If your background worker derive from `PeriodicBackgroundWorkerBase`, you should implement the `DoWork` method to perform your periodic working code. -* If you directly implement IBackgroundWorker, you will override/implement the `StartAsync` and `StopAsync` methods. + ### Register Background Worker