UtilRegistryDeleteValueT(RegInfoT, Boolean) Method
Deletes a registry subkey.
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 void DeleteValue<T>(
RegInfo<T> regInfo,
bool throwOnMissingValue = false
)
Public Shared Sub DeleteValue(Of T) (
regInfo As RegInfo(Of T),
Optional throwOnMissingValue As Boolean = false
)
Dim regInfo As RegInfo(Of T)
Dim throwOnMissingValue As Boolean
UtilRegistry.DeleteValue(regInfo, throwOnMissingValue)
public:
generic<typename T>
static void DeleteValue(
RegInfo<T>^ regInfo,
bool throwOnMissingValue = false
)
static member DeleteValue :
regInfo : RegInfo<'T> *
?throwOnMissingValue : bool
(* Defaults:
let _throwOnMissingValue = defaultArg throwOnMissingValue false
*)
-> unit
No code example is currently available or this language may not be supported.
- regInfo RegInfoT
-
A RegInfoT instance containing the registry info.
- throwOnMissingValue Boolean (Optional)
-
If set to , throws an exception on missing value.
- T
-
The type.