ProcessDiskUsageReport
ProcessDiskUsageReport
ProcessDiskUsageReport
ProcessDiskUsageReport
Class
Definition
Provides data about the disk usage of the process.
public : sealed class ProcessDiskUsageReport : IProcessDiskUsageReportpublic sealed class ProcessDiskUsageReport : IProcessDiskUsageReportPublic NotInheritable Class ProcessDiskUsageReport Implements IProcessDiskUsageReport// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
Call the GetReport method to get an instance of this class.
Properties
BytesReadCount BytesReadCount BytesReadCount BytesReadCount
Gets the number of bytes the process has read from disk.
public : long BytesReadCount { get; }public long BytesReadCount { get; }Public ReadOnly Property BytesReadCount As long// You can use this property in JavaScript.
- Value
- long long long long
The number of bytes the process has read from disk.
BytesWrittenCount BytesWrittenCount BytesWrittenCount BytesWrittenCount
Gets the number of bytes the process has written to disk.
public : long BytesWrittenCount { get; }public long BytesWrittenCount { get; }Public ReadOnly Property BytesWrittenCount As long// You can use this property in JavaScript.
- Value
- long long long long
The number of bytes the process has written to disk.
OtherBytesCount OtherBytesCount OtherBytesCount OtherBytesCount
Gets the number of bytes used by the process in disk operations that were not read or write operations.
public : long OtherBytesCount { get; }public long OtherBytesCount { get; }Public ReadOnly Property OtherBytesCount As long// You can use this property in JavaScript.
- Value
- long long long long
The number of bytes used by the process in disk operations that were not read or write operations.
OtherOperationCount OtherOperationCount OtherOperationCount OtherOperationCount
Gets the number of disk operations performed by the process that were not read or write operations.
public : long OtherOperationCount { get; }public long OtherOperationCount { get; }Public ReadOnly Property OtherOperationCount As long// You can use this property in JavaScript.
- Value
- long long long long
The number of disk operations performed by the process that were not read or write operations.
ReadOperationCount ReadOperationCount ReadOperationCount ReadOperationCount
Gets the number of disk read operations performed by the process.
public : long ReadOperationCount { get; }public long ReadOperationCount { get; }Public ReadOnly Property ReadOperationCount As long// You can use this property in JavaScript.
- Value
- long long long long
The number of disk read operations performed by the process.
WriteOperationCount WriteOperationCount WriteOperationCount WriteOperationCount
Gets the number of disk write operations performed by the process.
public : long WriteOperationCount { get; }public long WriteOperationCount { get; }Public ReadOnly Property WriteOperationCount As long// You can use this property in JavaScript.
- Value
- long long long long
The number of disk write operations performed by the process.