Updated process metric

This commit is contained in:
Florian Rappl
2025-11-02 02:43:16 +01:00
parent 568c785412
commit 0cfadb36f5

View File

@@ -38,9 +38,20 @@
public bool Sandboxed { get; set; }
/// <summary>
/// One of the following values:
/// One of the following values:
/// untrusted | low | medium | high | unknown
/// </summary>
public string IntegrityLevel { get; set; }
/// <summary>
/// The name of the process.
/// Examples for utility: Audio Service, Content Decryption Module Service, Network Service, Video Capture, etc.
/// </summary>
public string Name { get; set; }
/// <summary>
/// The non-localized name of the process.
/// </summary>
public string ServiceName { get; set; }
}
}