We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c02ed8b commit b40b77bCopy full SHA for b40b77b
1 file changed
NtApiDotNet/NtProcess.cs
@@ -2544,7 +2544,6 @@ public int HardErrorMode
2544
set => Set(ProcessInformationClass.ProcessDefaultHardErrorMode, value);
2545
}
2546
2547
-
2548
/// <summary>
2549
/// Does the process has a child process restriction?
2550
/// </summary>
@@ -2592,6 +2591,11 @@ public bool IsChildProcessRestricted
2592
2591
2593
public bool Subsystem => ExtendedFlags.HasFlagSet(ProcessExtendedBasicInformationFlags.IsSubsystemProcess);
2594
+ /// <summary>
2595
+ /// Gets whether the process is frozen.
2596
+ /// </summary>
2597
+ public bool Frozen => ExtendedFlags.HasFlagSet(ProcessExtendedBasicInformationFlags.IsFrozen);
2598
+
2599
2600
/// Get process protection information.
2601
0 commit comments