Discuss this help topic in SecureBlackbox Forum

TElLDAPSClient.Modify

TElLDAPSClient     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Modifies an existing entry.

Declaration

[C#]
    void Modify(string DN, TElLDAPPartialAttribute[] Attrs);

[VB.NET]
    Sub Modify(ByVal DN As String, ByVal Attrs As TElLDAPPartialAttribute[])

[Pascal]
    procedure Modify(const DN : string; const Attrs : array of TElLDAPAttribute); virtual;

[C++]
    void Modify(const std::string &DN, const std::vector<TElLDAPPartialAttributeHandle> &Attrs);

[PHP]
    void Modify(string $DN, array of TElLDAPPartialAttribute|NULL &$Attrs)

[Java]
    void modify(String DN, TElLDAPPartialAttribute[] Attrs);

Parameters

  • DN - Distinguished Name of the entry to be modified
  • Attrs - new entry attributes

Description

    Call this method to send a modification request to the server.

See also:     Add     Remove    

Discuss this help topic in SecureBlackbox Forum