Unbind (LDAP function): Difference between revisions
Jump to navigation
Jump to search
m (→Usage notes) |
m (→Usage notes) |
||
Line 17: | Line 17: | ||
The <var>[[ErrorNumber (LDAP function)|ErrorNumber]]</var> and <var>[[ErrorText (LDAP function)|ErrorText]]</var> methods may provide additional details. </td></tr> | The <var>[[ErrorNumber (LDAP function)|ErrorNumber]]</var> and <var>[[ErrorText (LDAP function)|ErrorText]]</var> methods may provide additional details. </td></tr> | ||
<tr><th> | <tr><th>ldap</th> | ||
<td>An <var>LDAP</var> object variable. | <td>An <var>LDAP</var> object variable. | ||
</td></tr></table> | </td></tr></table> |
Revision as of 21:47, 26 August 2011
Close this LDAP connection (LDAP class)
This callable
function closes a Janus LDAP connection.
It logs off the LDAP user, and it terminates the sending and receiving of
data on the connection and deactivates it.
Syntax
[%number =] ldap:Unbind
Syntax terms
%number | A float variable to contain the status result of the Unbind. Possible results are:
|
---|---|
ldap | An LDAP object variable. |
Usage notes
- After a successful Unbind (and after errors that cause a disconnection),
the LDAP method object is ready for another Bind:
that is, it is (re)initialized with no associated socket/connection references,
in the same state as if
%ld = New
were issued. - You can also close a connection (and delete the object) abruptly by issuing a Discard call, and you can achieve the same result by letting an LDAP object get discarded automatically ("implicitly") when the last reference to it is lost, but it is recommended that you first issue an Unbind call for a more orderly closure.