Edit

Share via


ProcessThread.TotalProcessorTime Property

Definition

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

C#
[System.Runtime.Versioning.SupportedOSPlatform("maccatalyst")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
public TimeSpan TotalProcessorTime { get; }
C#
public TimeSpan TotalProcessorTime { get; }

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

Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

See also