mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
added AdHelper back to solution (was lost during merge)
This commit is contained in:
@@ -5,11 +5,11 @@ using System.Runtime.InteropServices;
|
||||
|
||||
namespace mRemoteNG.Tools
|
||||
{
|
||||
public class ADhelper
|
||||
public class AdHelper
|
||||
{
|
||||
private DirectoryEntry _dEntry;
|
||||
|
||||
public ADhelper(string domain)
|
||||
public AdHelper(string domain)
|
||||
{
|
||||
Children = new Hashtable();
|
||||
Domain = domain;
|
||||
|
||||
@@ -65,7 +65,7 @@ namespace mRemoteNG.UI.Controls
|
||||
|
||||
private void AddTreeNodes(TreeNode tNode)
|
||||
{
|
||||
var adhelper = new ADhelper(Domain);
|
||||
var adhelper = new AdHelper(Domain);
|
||||
adhelper.GetChildEntries(tNode.Tag.ToString());
|
||||
var enumerator = adhelper.Children.GetEnumerator();
|
||||
tvActiveDirectory.BeginUpdate();
|
||||
|
||||
@@ -347,6 +347,7 @@
|
||||
<Compile Include="Themes\MremoteNGThemeBase.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Tools\ADhelper.cs" />
|
||||
<Compile Include="Tools\Attributes\AttributeUsedInAllProtocolsExcept.cs" />
|
||||
<Compile Include="Tools\Clipboard\WindowsClipboard.cs" />
|
||||
<Compile Include="Tools\CustomCollections\IFullyNotifiableList.cs" />
|
||||
|
||||
Reference in New Issue
Block a user