Namespace: UnityThreading
Assembly: UnityThreading (in UnityThreading.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static bool InterWaitOne(
	this ManualResetEvent that,
	TimeSpan duration
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function InterWaitOne ( _
	that As ManualResetEvent, _
	duration As TimeSpan _
) As Boolean
Visual C++
[ExtensionAttribute]
public:
static bool InterWaitOne(
	ManualResetEvent^ that, 
	TimeSpan duration
)

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ManualResetEvent. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also