 | RegGetStringValues method |
Returns an array of the values of a single parameter (Regedit right).
Only applicable for REG_MULTI_SZ parameters!
Namespace: NetEti.ApplicationEnvironmentAssembly: NetEti.RegAccess (in NetEti.RegAccess.dll) Version: 1.0.0+3058b4495e47cf04ccc2758883ed79dc29ef784f
Syntaxpublic string?[]? GetStringValues(
string key,
string?[]? defaultValues
)
Public Function GetStringValues (
key As String,
defaultValues As String()
) As String()
public:
virtual array<String^>^ GetStringValues(
String^ key,
array<String^>^ defaultValues
) sealed
abstract GetStringValues :
key : string *
defaultValues : string[] -> string[]
override GetStringValues :
key : string *
defaultValues : string[] -> string[]
Parameters
- key String
-
Path to the parameter whose value (Regedit right-hand side) is being searched for
based on the currently set RegistryRoot and RegistryBasePath.
- defaultValues String
- Returned if no matching entries were found.
Return value
StringString values (REG_MULTI_SZ)) of the key (registry on the right)
Implemented
IGetStringValueGetStringValues(String, String)
See also