XamlBackgroundReader.StartThread Method

Definition

Creates and starts a new Thread (constructed from ParameterizedThreadStart) that handles a named thread for the XamlReader.

Overloads

StartThread()

Creates and starts a new Thread (constructed from ParameterizedThreadStart) that handles a named thread for the XamlReader.

StartThread(String)

Creates and starts a new Thread (constructed from ParameterizedThreadStart) that handles a named thread for the XamlReader. You specify the thread name as a parameter.

StartThread()

Creates and starts a new Thread (constructed from ParameterizedThreadStart) that handles a named thread for the XamlReader.

public:
 void StartThread();
public void StartThread ();
member this.StartThread : unit -> unit
Public Sub StartThread ()

Exceptions

The thread is already started.

Remarks

By default, the thread is named XAML reader thread.

Applies to

StartThread(String)

Creates and starts a new Thread (constructed from ParameterizedThreadStart) that handles a named thread for the XamlReader. You specify the thread name as a parameter.

public:
 void StartThread(System::String ^ threadName);
public void StartThread (string threadName);
member this.StartThread : string -> unit
Public Sub StartThread (threadName As String)

Parameters

threadName
String

The name for the thread.

Exceptions

The thread is already started.

Applies to