Novell.Directory.Ldap.LdapModifyRequest.LdapModifyRequest C# (CSharp) Method

LdapModifyRequest() public method

Constructs an Ldap Modify request.
public LdapModifyRequest ( System dn, LdapModification mods, LdapControl cont ) : System
dn System The distinguished name of the entry to modify. /// ///
mods LdapModification The changes to be made to the entry. /// ///
cont LdapControl Any controls that apply to the modify request, /// or null if none. ///
return System
        public LdapModifyRequest(System.String dn, LdapModification[] mods, LdapControl[] cont)
            : base(LdapMessage.MODIFY_REQUEST, new RfcModifyRequest(new RfcLdapDN(dn), encodeModifications(mods)), cont)
        {
            return ;
        }