merge commit

This commit is contained in:
robvde 2013-10-03 17:24:24 +04:00
commit 097b3fe90b
22 changed files with 673 additions and 111 deletions

View file

@ -397,6 +397,8 @@ namespace WebsitePanel.Providers.HostedSolution
DirectoryEntry group = new DirectoryEntry(groupPath);
group.Invoke("Add", obj.Path);
group.CommitChanges();
}
public static void RemoveObjectFromGroup(string obejctPath, string groupPath)
@ -405,6 +407,8 @@ namespace WebsitePanel.Providers.HostedSolution
DirectoryEntry group = new DirectoryEntry(groupPath);
group.Invoke("Remove", obj.Path);
group.CommitChanges();
}
public static bool AdObjectExists(string path)