Exemplo n.º 1
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="directoryEntry"></param>
 public LdapNode(DirectoryEntry directoryEntry, ILdapIdentifier identifier)
 {
     this.directoryEntry = directoryEntry;
     this.identifier     = identifier;
 }
Exemplo n.º 2
0
        public LdapNode(string path, ILdapIdentifier identifier)
        {
            DirectoryEntry entry = new DirectoryEntry(path);

            this.identifier = identifier;
        }
Exemplo n.º 3
0
 public LdapTypedStream(List <string> properties, DirectoryEntry entry, ILdapIdentifier identifier)
 {
     this.properties = properties;
     this.entry      = entry;
     this.identifier = identifier;
 }