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.Start

Begins execution at the ThreadStart that was supplied at construction.

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

Exceptions

Exception Type Condition
ThreadStateException The thread has already been started.
SecurityException The caller does not have the appropriate SecurityPermission.

Remarks

When Start is called, the new thread will begin executing at the ThreadStart delegate passed in the constructor. Once the thread is dead, it cannot be restarted with another call to Start.

See Also

Thread Class | Thread Members | System.Threading Namespace