Blocks the current thread until the operation terminates or the amount of time specified by the timeOut parameter has elapsed.

Namespace: Mergecom.HL7
Assembly: Mergecom.HL7 (in Mergecom.HL7.dll) Version: 4.3.0.0

Syntax

C#
public bool WaitToComplete(
	int timeOut
)
Visual Basic
Public Function WaitToComplete ( _
	timeOut As Integer _
) As Boolean
Visual C++
public:
bool WaitToComplete(
	int timeOut
)

Parameters

timeOut
Type: System..::..Int32
The number of milliseconds to wait for the operation to terminate, or -1 to wait indefinitely.

Return Value

true if the operation has terminated; false if the operation has not terminated after the amount of time specified by the timeOut parameter has elapsed.

See Also