Notifies the thread to stop working and waits for completion for the given ammount of time. When the thread soes not stop after the given timeout the thread will be terminated.

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

Syntax

C#
public void AbortWaitForSeconds(
	float seconds
)
Visual Basic
Public Sub AbortWaitForSeconds ( _
	seconds As Single _
)
Visual C++
public:
void AbortWaitForSeconds(
	float seconds
)

Parameters

seconds
Type: System..::..Single
The time this method will wait until the thread will be terminated.

See Also