We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8530b27 commit c929923Copy full SHA for c929923
AzureWebFarm.OctopusDeploy/Infrastructure/RegistryEditor.cs
@@ -4,8 +4,15 @@
4
5
namespace AzureWebFarm.OctopusDeploy.Infrastructure
6
{
7
+ /// <summary>
8
+ /// Performs edits to the machines local registry.
9
+ /// </summary>
10
public interface IRegistryEditor
11
12
13
+ /// Recursively delete a sub tree from the HKLM node in local registry.
14
15
+ /// <param name="pathToTree">The path to the sub tree to delete</param>
16
void DeleteLocalMachineTree(params string[] pathToTree);
17
}
18
0 commit comments