Kernel32IsProcessorFeaturePresent Method

Determines whether the specified processor feature is supported by the current computer.

Definition

Namespace: DevCase.Win32.NativeMethods
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("Kernel32.dll", SetLastError = true)]
public static bool IsProcessorFeaturePresent(
	ProcessorFeature feature
)

Parameters

feature  ProcessorFeature
The processor feature to be tested.

Return Value

Boolean
If the feature is supported, the return value is .

If the feature is not supported, the return value is .

If the HAL does not support detection of the feature, whether or not the hardware supports the feature, the return value is also .

To get extended error information, call GetLastWin32Error.

Remarks

See Also