Wait Method (Int32)
Collapse the table of content
Expand the table of content

CountdownEvent.Wait Method (Int32)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Blocks the current thread until the CountdownEvent is set, using a 32-bit signed integer to measure the timeout.

Namespace:  System.Threading
Assembly:  mscorlib (in mscorlib.dll)

'Declaration
Public Function Wait ( _
	millisecondsTimeout As Integer _
) As Boolean

Parameters

millisecondsTimeout
Type: System.Int32
The number of milliseconds to wait, or Infinite(-1) to wait indefinitely.

Return Value

Type: System.Boolean
true if the CountdownEvent was set; otherwise, false.

ExceptionCondition
ObjectDisposedException

The current instance has already been disposed.

ArgumentOutOfRangeException

millisecondsTimeout is a negative number other than -1, which represents an infinite time-out.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft