Class ThreadManage
Represents a management structure for handling threading and task-related operations, encapsulating details about a specific thread and task, including their current status.
Inheritance
System.Object
    ThreadManage
  Inherited Members
      System.Object.ToString()
    
    
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
  Namespace: BoldReports.RDL.Data
Assembly: BoldReports.Web.dll
Syntax
public class ThreadManage
  Constructors
ThreadManage()
Declaration
public ThreadManage()
  Properties
TaskDetails
Gets or sets the details of the task.
Declaration
public Task TaskDetails { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task | A   | 
      
TaskStatus
Gets or sets the current status of the task.
Declaration
public string TaskStatus { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | A string indicating the status of the associated task, such as "Running", "Completed", or "Faulted".  | 
      
ThreadDetails
Gets or sets the details of the thread.
Declaration
public Thread ThreadDetails { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Threading.Thread | A   |