New (LDAP constructor)

From m204wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Create a new LDAP object (LDAP class)


Syntax

%ldap = [%(LDAP):]New

Syntax terms

%LDAPA declared LDAP object to contain the new LDAP object instance.
[%(LDAP):] The optional class name in parentheses denotes a Constructor. See "Usage notes", below, for more information about invoking an LDAP Constructor.

Usage notes

  • As described in "Using New or other Constructors", New can be called with no object, with an explicit class name, or with an object variable, even if that object is Null:

    %ldap = new %ldap = %(LDAP):new %ldap = %ldap:new

See also