ProfileDeleteValue(String, String) Method

Delete the value from the registry. Name may be an empty string for the unnamed value.

Definition

Namespace: ASCOM.Utilities
Assembly: ASCOM.Utilities (in ASCOM.Utilities.dll) Version: 7.1.3+4851.c5da65c2b
C#
public void DeleteValue(
	string DriverID,
	string Name
)

Parameters

DriverID  String
ProgID of the device to read from
Name  String
Name of the variable whose value is retrieved

Remarks

Specify "" to delete the unnamed value which is also known as the "default" value for a registry key.

This overload is not available through COM, please use "DeleteValue(ByVal DriverID As String, ByVal Name As String, ByVal SubKey As String)" with SubKey set to empty string achieve this effect.

Exceptions

InvalidValueExceptionThrown if DriverID is an empty string.
DriverNotRegisteredExceptionThrown if the driver is not registered,

See Also