Get the value of a key in a registry HKCR (classes) subkey
Namespace: LLCryptoLib.UtilsAssembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)
Syntax
C# |
---|
public static string GetHKCRValue(
string keypath,
string keyname,
string name
) |
Visual Basic |
---|
Public Shared Function GetHKCRValue ( _
keypath As String, _
keyname As String, _
name As String _
) As String |
Visual C++ |
---|
public:
static String^ GetHKCRValue(
String^ keypath,
String^ keyname,
String^ name
) |
Parameters
- keypath
- Type: System..::..String
Path of subkey, ie: Folder
- keyname
- Type: System..::..String
Name of the key
- name
- Type: System..::..String
Name of the value
Return Value
The string if correctly read, null else
See Also