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

LdapModification() public method

Specifies a modification to be made to an attribute.
public LdapModification ( int op, LdapAttribute attr ) : System
op int The type of modification to make, which can be /// one of the following: ///
    ///
  • LdapModification.ADD - The value should be added to /// the attribute
  • /// ///
  • LdapModification.DELETE - The value should be removed /// from the attribute
  • /// ///
  • LdapModification.REPLACE - The value should replace all /// existing values of the /// attribute
  • ///
///
attr LdapAttribute The attribute to modify. /// ///
return System
        public LdapModification(int op, LdapAttribute attr)
        {
            this.op = op;
            this.attr = attr;
            return ;
        }
LdapModification