ProcessThread.TotalProcessorTime Property

Definition

Gets the total amount of time that this thread has spent using the processor.

public:
 property TimeSpan TotalProcessorTime { TimeSpan get(); };
public TimeSpan TotalProcessorTime { get; }
[System.Runtime.Versioning.SupportedOSPlatform("maccatalyst")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
public TimeSpan TotalProcessorTime { get; }
member this.TotalProcessorTime : TimeSpan
[<System.Runtime.Versioning.SupportedOSPlatform("maccatalyst")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
member this.TotalProcessorTime : TimeSpan
Public ReadOnly Property TotalProcessorTime As TimeSpan

Property Value

A TimeSpan that indicates the amount of time that the thread has had control of the processor.

Attributes

Exceptions

The thread time could not be retrieved.

The process is on a remote computer.

Remarks

The TotalProcessorTime property indicates the total amount of time that the system has taken the thread out of the wait state and given it priority on any processor. On a multiple processor system, this value would include time spent on each processor, if the thread used more than one processor.

The TotalProcessorTime property is the sum of the UserProcessorTime and PrivilegedProcessorTime properties.

Applies to

See also