public LDAPMod(int mod_op, string mod_type, string[] modv_strvals) { ldapmod = new LDAPModInner(); ldapmod.mod_op = mod_op; //Add, Mod, Replace ldapmod.mod_type = mod_type; //attributeNames ldapmod.attrValues = IntPtr.Zero; this.modv_strvals = modv_strvals; //attributeValues }
//initialize ldapmod public LDAPMod() { ldapmod = new LDAPModInner(); ldapmod.mod_op = 0; ldapmod.mod_type = null; ldapmod.attrValues = IntPtr.Zero; modv_strvals = null; }