6 references to ProcessPriorityClass
Microsoft.CodeAnalysis.Remote.ServiceHub (2)
Host\ProcessExtensions.cs (1)
15public static bool TrySetPriorityClass(this Process process, ProcessPriorityClass priorityClass)
Services\BrokeredServiceBase.cs (1)
42Process.GetCurrentProcess().TrySetPriorityClass(ProcessPriorityClass.BelowNormal);
netstandard (1)
netstandard.cs (1)
668[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.ProcessPriorityClass))]
RunTests (1)
ProcessRunner.cs (1)
164process.PriorityClass = ProcessPriorityClass.BelowNormal;
System (1)
src\libraries\shims\System\ref\System.cs (1)
523[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.ProcessPriorityClass))]
System.Diagnostics.Process (1)
artifacts\obj\System.Diagnostics.Process\Debug\net10.0\System.Diagnostics.Process.notsupported.cs (1)
68public System.Diagnostics.ProcessPriorityClass PriorityClass { get { throw new System.PlatformNotSupportedException(System.SR.Process_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.Process_PlatformNotSupported); } }