UtilRegistryGetValueDataT(RegInfoT, RegistryValueOptions) Method
Gets the data of a registry value.
Namespace: DevCase.Core.Windows.RegistryAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static T GetValueData<T>(
RegInfo<T> regInfo,
RegistryValueOptions registryValueOptions = RegistryValueOptions.None
)
Public Shared Function GetValueData(Of T) (
regInfo As RegInfo(Of T),
Optional registryValueOptions As RegistryValueOptions = RegistryValueOptions.None
) As T
Dim regInfo As RegInfo(Of T)
Dim registryValueOptions As RegistryValueOptions
Dim returnValue As T
returnValue = UtilRegistry.GetValueData(regInfo,
registryValueOptions)
public:
generic<typename T>
static T GetValueData(
RegInfo<T>^ regInfo,
RegistryValueOptions registryValueOptions = RegistryValueOptions::None
)
static member GetValueData :
regInfo : RegInfo<'T> *
?registryValueOptions : RegistryValueOptions
(* Defaults:
let _registryValueOptions = defaultArg registryValueOptions RegistryValueOptions.None
*)
-> 'T
No code example is currently available or this language may not be supported.
- regInfo RegInfoT
-
A RegInfoT instance containing the registry info.
- registryValueOptions RegistryValueOptions (Optional)
-
The registry value options.
- T
-
The type.
T
The value data.