TransactedRegistryKey.DeleteValue Method

Definition

Overloads

DeleteValue(String)

Deletes the specified value from this key. Utilizes Transaction.Current for its transaction.

DeleteValue(String, Boolean)

Deletes the specified value from this key. Utilizes Transaction.Current for its transaction.

DeleteValue(String)

Deletes the specified value from this key. Utilizes Transaction.Current for its transaction.

public:
 void DeleteValue(System::String ^ name);
public:
 void DeleteValue(Platform::String ^ name);
void DeleteValue(std::wstring const & name);
public void DeleteValue (string name);
member this.DeleteValue : string -> unit
Public Sub DeleteValue (name As String)

Parameters

name
String

Applies to

DeleteValue(String, Boolean)

Deletes the specified value from this key. Utilizes Transaction.Current for its transaction.

public:
 void DeleteValue(System::String ^ name, bool throwOnMissingValue);
public:
 void DeleteValue(Platform::String ^ name, bool throwOnMissingValue);
void DeleteValue(std::wstring const & name, bool throwOnMissingValue);
public void DeleteValue (string name, bool throwOnMissingValue);
member this.DeleteValue : string * bool -> unit
Public Sub DeleteValue (name As String, throwOnMissingValue As Boolean)

Parameters

name
String
throwOnMissingValue
Boolean

Applies to