modify method

  1. @override
Future<LdapResult> modify(
  1. String dn,
  2. List<Modification> mods
)
override

Performs an LDAP modify operation.

Modifies the LDAP entry dn with the list of modifications mods.

Some possible exceptions

LdapResultObjectClassViolationException thrown when the change would cause the entry to violate LDAP schema rules.

Implementation

@override
Future<LdapResult> modify(String dn, List<Modification> mods) async {
  loggerConnection.fine('modify');
  return await _cmgr.process(ModifyRequest(dn, mods));
}