NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Thread.Join

Waits for a thread.

Overload List

Waits either for the thread to die or for a specified time to expire.

[Visual Basic] Overloads Public Function Join(TimeSpan) As Boolean
[C#] public bool Join(TimeSpan);
[C++] public: bool Join(TimeSpan);
[JScript] public function Join(TimeSpan) : Boolean;

Waits either for the thread to die or for a specified time to expire.

[Visual Basic] Overloads Public Function Join(Integer) As Boolean
[C#] public bool Join(int);
[C++] public: bool Join(int);
[JScript] public function Join(int) : Boolean;

Waits for a thread to die.

[Visual Basic] Overloads Public Sub Join()
[C#] public void Join();
[C++] public: void Join();
[JScript] public function Join();

See Also

Thread Class | Thread Members | System.Threading Namespace