RegistryControllerGetRegistrySubKeys Method |
Gets the registry sub key list no authentication.
Namespace:
Xcalibur.Controllers
Assembly:
Xcalibur.Controllers (in Xcalibur.Controllers.dll) Version: 1.0.5.0 (1.0.0.0)
Syntax public static string[] GetRegistrySubKeys(
RegistryHive root,
string path,
string computer,
RegistryView viewType = RegistryView.Registry64
)
Public Shared Function GetRegistrySubKeys (
root As RegistryHive,
path As String,
computer As String,
Optional viewType As RegistryView = RegistryView.Registry64
) As String()
public:
static array<String^>^ GetRegistrySubKeys(
RegistryHive root,
String^ path,
String^ computer,
RegistryView viewType = RegistryView::Registry64
)
static member GetRegistrySubKeys :
root : RegistryHive *
path : string *
computer : string *
?viewType : RegistryView
(* Defaults:
let _viewType = defaultArg viewType RegistryView.Registry64
*)
-> string[]
Parameters
- root
- Type: Microsoft.Win32RegistryHive
The registry root. - path
- Type: SystemString
The registry path. - computer
- Type: SystemString
The computer name. - viewType (Optional)
- Type: Microsoft.Win32RegistryView
Type of registry view..
Return Value
Type:
StringSee Also