From 65a1e2240a2955684d99acca2ca8d5c53d6f5fc3 Mon Sep 17 00:00:00 2001 From: Genevieve Warren <24882762+gewarren@users.noreply.github.com> Date: Fri, 15 Aug 2025 17:12:50 -0700 Subject: [PATCH] Add missing word --- xml/System.Threading/PeriodicTimer.xml | 397 +++++++++++++------------ 1 file changed, 199 insertions(+), 198 deletions(-) diff --git a/xml/System.Threading/PeriodicTimer.xml b/xml/System.Threading/PeriodicTimer.xml index 7379e81243f..f3368bfd5c6 100644 --- a/xml/System.Threading/PeriodicTimer.xml +++ b/xml/System.Threading/PeriodicTimer.xml @@ -1,29 +1,29 @@ - - - - - - - - - System.Runtime - 6.0.0.0 - 7.0.0.0 - 8.0.0.0 - 9.0.0.0 - 10.0.0.0 - - - System.Object - - - - System.IDisposable - - - - Provides a periodic timer that enables waiting asynchronously for timer ticks. - + + + + + + + + + System.Runtime + 6.0.0.0 + 7.0.0.0 + 8.0.0.0 + 9.0.0.0 + 10.0.0.0 + + + System.Object + + + + System.IDisposable + + + + Provides a periodic timer that enables waiting asynchronously for timer ticks. + may be used concurrently with an active to interrupt it and cause it to return `false`. - ]]> - - - - - - - - - - - Constructor - - System.Runtime - 6.0.0.0 - 7.0.0.0 - 8.0.0.0 - 9.0.0.0 - 10.0.0.0 - - - - - - The time interval in milliseconds between invocations of the callback. - Initializes the timer. - To be added. - - is less than or equal to 0, or greater than or equal to UInt32.MaxValue. - - - - - - - - - - Constructor - - System.Runtime - 8.0.0.0 - 9.0.0.0 - 10.0.0.0 - - - - - - - The period between ticks. - The used to interpret . - Initializes the timer. - To be added. - - must be or represent a number of milliseconds equal to or larger than 1 and smaller than . - - is . - - - - - - - - - - Method - - M:System.IDisposable.Dispose - - - System.Runtime - 6.0.0.0 - 7.0.0.0 - 8.0.0.0 - 9.0.0.0 - 10.0.0.0 - - - System.Void - - - - Stops the timer and releases the associated managed resources. - + ]]> + + + + + + + + + + + Constructor + + System.Runtime + 6.0.0.0 + 7.0.0.0 + 8.0.0.0 + 9.0.0.0 + 10.0.0.0 + + + + + + The time interval in milliseconds between invocations of the callback. + Initializes the timer. + To be added. + + is less than or equal to 0, or greater than or equal to UInt32.MaxValue. + + + + + + + + + + Constructor + + System.Runtime + 8.0.0.0 + 9.0.0.0 + 10.0.0.0 + + + + + + + The period between ticks. + The used to interpret . + Initializes the timer. + To be added. + + must be or represent a number of milliseconds equal to or larger than 1 and smaller than . + + is . + + + + + + + + + + Method + + M:System.IDisposable.Dispose + + + System.Runtime + 6.0.0.0 + 7.0.0.0 + 8.0.0.0 + 9.0.0.0 + 10.0.0.0 + + + System.Void + + + + Stops the timer and releases the associated managed resources. + will cause an active wait with to complete with a value of `false`. All subsequent invocations will produce a value of `false`. - ]]> - - - - - - - - - - - Method - - System.Runtime - 7.0.0.0 - 8.0.0.0 - 9.0.0.0 - 10.0.0.0 - - - System.Void - - - - Ensures that resources are freed and other cleanup operations are performed when the garbage collector reclaims the object. - To be added. - - - - - - - - - - Property - - System.Runtime - 8.0.0.0 - 9.0.0.0 - 10.0.0.0 - - - System.TimeSpan - - - Gets or sets the period between ticks. - To be added. - All prior ticks of the timer, including any that may be waiting to be consumed by , are unaffected by changes to . Setting affects only and all subsequent times at which the timer will tick. - - must be or represent a number of milliseconds equal to or larger than 1 and smaller than . - - - - - - - - - Method - - System.Runtime - 6.0.0.0 - 7.0.0.0 - 8.0.0.0 - 9.0.0.0 - 10.0.0.0 - - - System.Threading.Tasks.ValueTask<System.Boolean> - - - - - - A for cancelling the asynchronous wait. If cancellation is requested, it affects only the single wait operation; the underlying timer continues firing. - Waits for the next tick of the timer, or for the timer to be stopped. - A task that will be completed due to the timer firing, being called to stop the timer, or cancellation being requested. - + ]]> + + + + + + + + + + + Method + + System.Runtime + 7.0.0.0 + 8.0.0.0 + 9.0.0.0 + 10.0.0.0 + + + System.Void + + + + Ensures that resources are freed and other cleanup operations are performed when the garbage collector reclaims the object. + To be added. + + + + + + + + + + Property + + System.Runtime + 8.0.0.0 + 9.0.0.0 + 10.0.0.0 + + + System.TimeSpan + + + Gets or sets the period between ticks. + To be added. + All prior ticks of the timer, including any that might be waiting to be consumed by , are unaffected by changes to . Setting affects only the current period and all subsequent times at which the timer will tick. + + must be or represent a number of milliseconds equal to or larger than 1 and smaller than . + + + + + + + + + Method + + System.Runtime + 6.0.0.0 + 7.0.0.0 + 8.0.0.0 + 9.0.0.0 + 10.0.0.0 + + + System.Threading.Tasks.ValueTask<System.Boolean> + + + + + + A for cancelling the asynchronous wait. If cancellation is requested, it affects only the single wait operation; the underlying timer continues firing. + Waits for the next tick of the timer, or for the timer to be stopped. + A task that will be completed due to the timer firing, being called to stop the timer, or cancellation being requested. + behaves like an auto-reset event, in that multiple ticks are coalesced into a single tick if they occur between calls to . Similarly, a call to will void any tick not yet consumed. may only be used by one consumer at a time, and may be used concurrently with a single call to . - ]]> - - The cancellation token was canceled. This exception is stored into the returned task. - - - - + + ]]> + + The cancellation token was canceled. This exception is stored into the returned task. + + + +