UtilWMIGetAllValuesInWMIClassName Method

Returns a DictionaryTKey, TValue that represents all the property and values in the specified WIM class name.

Note that all the values are converted to string.

Definition

Namespace: DevCase.Core.Diagnostics.WMI
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static Dictionary<string, Dictionary<string, KeyValuePair<string, string>>> GetAllValuesInWMIClassName(
	string classname,
	bool includeReferenceProperties,
	bool includeNulValues
)

Parameters

classname  String
The WMI class name where to fetch its properties.
includeReferenceProperties  Boolean
to include reference properties.
includeNulValues  Boolean
to include values that are nul.

Return Value

DictionaryString, DictionaryString, KeyValuePairString, String
A DictionaryTKey, TValue that represents all the property and values in the specified WIM class name.

Example

This is a code example.
C#
No code example is currently available or this language may not be supported.

See Also