Kernel - NKS0053
Use KernelPlatform.IsRunningFromScreen()
Last updated
Use KernelPlatform.IsRunningFromScreen()
Last updated
This analyzer provides the following strings:
Context | String |
---|---|
This code analyzer detects the usage of GetEnvironmentVariable("STY")
from the Environment
class found in the System
namespace.
GetEnvironmentVariable
is a method to determine the terminal emulator and the terminal type. It's also a method to determine whether it's running on GNU Screen or on Tmux. However, we needed to increase the readability.
As a result, KernelPlatform
implements a handful of terminal detection functions to simplify the complicated terminal checking statements to its simpler equivalent.
To get a brief insight about how this analyzer works, compare the two code blocks shown to you below:
You can suppress this suggestion by including it in the appropriate place, whichever is convenient.
For more information about how to suppress any warning issued by the Nitrocid analyzer, visit the below page:
We recommend that every caller which use this function use the recommended abovementioned method.
Error List
Caller uses Environment.GetEnvironmentVariable("STY")
instead of KernelPlatform.IsRunningFromScreen()
Suggestion Box
Use KernelPlatform.IsRunningFromScreen()
instead of Environment.GetEnvironmentVariable("STY")
Description
KernelPlatform.IsRunningFromScreen()
is more readable and less verbose than Environment.GetEnvironmentVariable("STY")
.