|   | Managed | 
 Inheritance Hierarchy
Inheritance Hierarchy
         Syntax
SyntaxThe ManagedThread type exposes the following members.
 Constructors
Constructors| Name | Description | |
|---|---|---|
|  | ManagedThread(ParameterizedThreadStart) | Initializes a new instance of the ManagedThread class, specifying a delegate that allows an object to be passed to the thread when the thread is started. | 
|  | ManagedThread(ThreadStart) | Initializes a new instance of the ManagedThread class. | 
|  | ManagedThread(ContextCallback, ExecutionContext) | Initializes a new instance of the ManagedThread class, specifying a delegate that allows an object to be passed to the thread when the thread is started and allowing the user to specify an alternate execution context for the thread. | 
 Properties
Properties| Name | Description | |
|---|---|---|
|  | IsAlive | Gets a value indicating the execution status of the current thread. | 
|  | Name | Gets or sets the name of the thread. | 
|  | Priority | Gets or sets a value indicating the scheduling priority of a thread. | 
|  | RunTime | Gets the total amount of time, in seconds, that the managed thread has been active. | 
|  | StartTime | Get the time, in ticks, that the thread started executing | 
|  | State | An object containing data to be used by the thread's execution method. | 
|  | Status | Gets a value containing the curretn status of the current thread. | 
|  | StopTime | Get the time, in ticks, that the thread finished executing | 
|  | Tag | An object that allows additional user defined information to be tracked along with this thread. | 
|  | Type | Returns the managed thread type (either StandardThread or QueuedThread) | 
 Methods
Methods| Name | Description | |
|---|---|---|
|  | Abort | Raises a ThreadAbortException in the thread on which it is invoked, to begin the process of terminating the thread. Calling this method usually terminates the thread. | 
|  | Abort(Object) | Raises a ThreadAbortException in the thread on which it is invoked, to begin the process of terminating the thread. Calling this method usually terminates the thread. | 
|  | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | 
|  | GetHashCode | Serves as the default hash function. (Inherited from Object) | 
|  | GetType | Gets the Type of the current instance. (Inherited from Object) | 
|  | Join | Blocks the calling thread until a thread terminates or the specified time elapses, while continuing to perform standard COM and SendMessage pumping. | 
|  | Join(Int32) | Blocks the calling thread until a thread terminates or the specified time elapses, while continuing to perform standard COM and SendMessage pumping. | 
|  | Join(TimeSpan) | Blocks the calling thread until a thread terminates or the specified time elapses, while continuing to perform standard COM and SendMessage pumping. | 
|  | Start | Causes a thread to be scheduled for execution. | 
|  | Start(Object) | Causes a thread to be scheduled for execution. | 
|  | ToString | Returns a string that represents the current object. (Inherited from Object) | 
 Extension Methods
Extension Methods| Name | Description | |
|---|---|---|
|  | GetEnumValueOrDefault | Gets the enumeration constant for value, if defined in the enumeration, or a default value. (Defined by EnumExtensions) | 
|  | GetEnumValueOrDefaultT | Gets the enumeration constant for this value, if defined in the enumeration, or a default value. (Defined by EnumExtensions) | 
 Remarks
Remarks See Also
See Also