Novell.Directory.Ldap.LdapAddRequest.LdapAddRequest C# (CSharp) Méthode

LdapAddRequest() public méthode

Constructs a request to add an entry to the directory.
public LdapAddRequest ( LdapEntry entry, LdapControl cont ) : System
entry LdapEntry The LdapEntry to add to the directory. /// ///
cont LdapControl Any controls that apply to the add request, /// or null if none. ///
Résultat System
        public LdapAddRequest(LdapEntry entry, LdapControl[] cont)
            : base(LdapMessage.ADD_REQUEST, new RfcAddRequest(new RfcLdapDN(entry.DN), makeRfcAttrList(entry)), cont)
        {
            return ;
        }