Thread2 Interface
Represents a thread in a Visual Studio application.
Namespace: EnvDTE90
Assembly: EnvDTE90 (in EnvDTE90.dll)
Syntax
'Declaration
<GuidAttribute("86FD0779-FBBE-41CC-B444-6EE8676F4F2C")> _
Public Interface Thread2 _
Inherits Thread
[GuidAttribute("86FD0779-FBBE-41CC-B444-6EE8676F4F2C")]
public interface Thread2 : Thread
[GuidAttribute(L"86FD0779-FBBE-41CC-B444-6EE8676F4F2C")]
public interface class Thread2 : Thread
[<GuidAttribute("86FD0779-FBBE-41CC-B444-6EE8676F4F2C")>]
type Thread2 =
interface
interface Thread
end
public interface Thread2 extends Thread
The Thread2 type exposes the following members.
Properties
Name | Description | |
---|---|---|
![]() |
Category | |
![]() |
Collection | (Inherited from Thread.) |
![]() |
Collection | Gets the collection that contains this thread. |
![]() |
DisplayName | |
![]() |
DTE | (Inherited from Thread.) |
![]() |
DTE | Gets the top-level extensibility object. |
![]() |
Flag | Gets or sets a flag on an individual thread. |
![]() |
ID | (Inherited from Thread.) |
![]() |
ID | Gets the thread ID. |
![]() |
IsAlive | (Inherited from Thread.) |
![]() |
IsAlive | Gets whether the referenced thread is still alive. |
![]() |
IsFrozen | (Inherited from Thread.) |
![]() |
IsFrozen | Gets whether or not a thread's execution has been suspended by the debugger. |
![]() |
Location | (Inherited from Thread.) |
![]() |
Location | Gets the address at which the thread was executing code at the time the process was stopped for debugging. |
![]() |
Name | (Inherited from Thread.) |
![]() |
Name | Gets the name of the thread. |
![]() |
Parent | (Inherited from Thread.) |
![]() |
Parent | Gets the immediate parent object of a Thread object. |
![]() |
Priority | (Inherited from Thread.) |
![]() |
Priority | Gets the scheduling priority of the thread. |
![]() |
Program | (Inherited from Thread.) |
![]() |
Program | Deprecated. Do not use. |
![]() |
StackFrames | (Inherited from Thread.) |
![]() |
StackFrames | Gets the collection of stack frames through which this thread is executing. |
![]() |
SuspendCount | (Inherited from Thread.) |
![]() |
SuspendCount | Gets the number of times this thread has been suspended by the debugger. |
Top
Methods
Name | Description | |
---|---|---|
![]() |
Freeze() | (Inherited from Thread.) |
![]() |
Freeze() | Stops the thread from executing. |
![]() |
Thaw() | (Inherited from Thread.) |
![]() |
Thaw() | Allows the thread to resume execution. |
Top