I intend to do a very simple settings exporter for Windows Mobile. I have handled most of the problems, but I have one which I don't get right now. The problem I have is to properly read and analyze the REG_MUI_SZ value kind.
In NET CF there is a RegistryKey.GetValueKind method but it apparently doesnt support this type of value.
So let's say I want to read all the values from [HKEY_LOCAL_MACHINE\Comm\AsyncMac].
Among others, there is a value of "DisplayName" which is a REG_MUI_SZ type with a value of "netmui.dll,#9008".
Unfortunately the GetValueKind method for this value is set to RegistryValueKind.String and the GetValue method gives me the (!!!) string: "AsyncMac NDISWAN Miniport"! Which is obviously the string resource stored in netmui.dll under #9008!
My question is: Is there any way to get this value and valuekind properly?
All I need is to store the "netmui.dll,#9008" in a text file. Or at least I want to know that this value is a REG_MUI_SZ to be able to throw a exception, that I can't read it properly. Because now I only get a string for which I don't even know that it's an unsupported type...