diff --git a/xml/System.Threading/Timer.xml b/xml/System.Threading/Timer.xml index c43052f9028..39d0abe5f19 100644 --- a/xml/System.Threading/Timer.xml +++ b/xml/System.Threading/Timer.xml @@ -857,15 +857,17 @@ Sub TimerCallback(state As Object) if the timer was successfully updated; otherwise, . - , the callback method is invoked immediately. If `dueTime` is , the callback method is never invoked; the timer is disabled, but can be re-enabled by calling and specifying a positive value for `dueTime`. - - If `period` is or , and `dueTime` is positive, the callback method is invoked once; the periodic behavior of the timer is disabled, but can be re-enabled by calling and specifying a value greater than zero for `period`. - + , the callback method is invoked immediately. If `dueTime` is , the callback method is never invoked; the timer is disabled, but can be re-enabled by calling and specifying a positive value for `dueTime`. + + If `period` is or , and `dueTime` is positive, the callback method is invoked once; the periodic behavior of the timer is disabled, but can be re-enabled by calling and specifying a value greater than zero for `period`. + The method can be called from the delegate. ## Examples