home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _73c1ae56bef5144e53f9e2dfdbac1b33 < prev    next >
Text File  |  2000-03-23  |  5KB  |  129 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Net::LDAP::Message -- Message response from LDAP server</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Net::LDAP::Message -- Message response from LDAP server</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#methods">METHODS</A></LI>
  26.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  27.     <LI><A HREF="#acknowledgements">ACKNOWLEDGEMENTS</A></LI>
  28.     <LI><A HREF="#author">AUTHOR</A></LI>
  29.     <LI><A HREF="#copyright">COPYRIGHT</A></LI>
  30. </UL>
  31. <!-- INDEX END -->
  32.  
  33. <HR>
  34. <P>
  35. <H1><A NAME="name">NAME</A></H1>
  36. <P>Net::LDAP::Message -- Message response from LDAP server</P>
  37. <P>
  38. <HR>
  39. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  40. <UL>
  41. <LI>Linux</LI>
  42. <LI>Solaris</LI>
  43. <LI>Windows</LI>
  44. </UL>
  45. <HR>
  46. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  47. <PRE>
  48.   use Net::LDAP;</PRE>
  49. <P>
  50. <HR>
  51. <H1><A NAME="description">DESCRIPTION</A></H1>
  52. <P><STRONG>Net::LDAP::Message</STRONG> is a base class for the objects returned by the
  53. <A HREF="../../../../site/lib/Net/LDAP.html">the Net::LDAP manpage</A> methods
  54. <A HREF="../../../../site/lib/Net/LDAP.html#abandon( id [, options])">abandon</A>,
  55. <A HREF="../../../../site/lib/Net/LDAP.html#add( dn [,options ])">add</A>,
  56. <A HREF="../../../../site/lib/Net/LDAP.html#bind( dn [, options])">bind</A>,
  57. <A HREF="../../../../site/lib/Net/LDAP.html#compare( dn [, options])">compare</A>,
  58. <A HREF="../../../../site/lib/Net/LDAP.html#delete( dn [, options])">delete</A>,
  59. <A HREF="../../../../site/lib/Net/LDAP.html#modify( dn [, options])">modify</A>,
  60. <A HREF="../../../../site/lib/Net/LDAP.html#moddn( dn [, options])">moddn</A>,
  61. <A HREF="../../../../site/lib/Net/LDAP.html#search(options)">search</A> and
  62. <A HREF="../../../../site/lib/Net/LDAP.html#unbind">unbind</A>.</P>
  63. <P>The sub-class <A HREF="../../../../site/lib/Net/LDAP/Search.html">the Net::LDAP::Search manpage</A> returned by <A HREF="../../../../site/lib/Net/LDAP.html#search(options)">search</A> also
  64. defines many methods.</P>
  65. <P>If the <A HREF="../../../../site/lib/Net/LDAP.html">the Net::LDAP manpage</A> object is in async mode then all these methods, except
  66. <A HREF="#item_done"><CODE>done</CODE></A>, will cause a wait until the request is completed.</P>
  67. <P>
  68. <HR>
  69. <H1><A NAME="methods">METHODS</A></H1>
  70. <DL>
  71. <DT><STRONG><A NAME="item_code">code</A></STRONG><BR>
  72. <DD>
  73. The code value in the result message from the server. Normally for
  74. a success zero will be returned. <A HREF="../../../../site/lib/Net/LDAP/Constant.html">Constants</A> for the result codes
  75. can be imported from the <A HREF="../../../../site/lib/Net/LDAP.html">the Net::LDAP manpage</A> module.
  76. <P></P>
  77. <DT><STRONG><A NAME="item_error">error</A></STRONG><BR>
  78. <DD>
  79. The error message in the result message from the server.
  80. <P></P>
  81. <DT><STRONG><A NAME="item_mesg_id">mesg_id</A></STRONG><BR>
  82. <DD>
  83. The message id of the request message sent to the server.
  84. <P></P>
  85. <DT><STRONG><A NAME="item_done">done</A></STRONG><BR>
  86. <DD>
  87. Returns <EM>true</EM> if the request has been completed.
  88. <P></P>
  89. <DT><STRONG><A NAME="item_dn">dn</A></STRONG><BR>
  90. <DD>
  91. The DN in the result message from the server.
  92. <P></P>
  93. <DT><STRONG><A NAME="item_sync">sync</A></STRONG><BR>
  94. <DD>
  95. Wait for the server to complete the request.
  96. <P></P>
  97. <DT><STRONG><A NAME="item_referrals">referrals</A></STRONG><BR>
  98. <DD>
  99. Returns a list of referrals from the result message.
  100. <P></P></DL>
  101. <P>
  102. <HR>
  103. <H1><A NAME="see also">SEE ALSO</A></H1>
  104. <P><A HREF="../../../../site/lib/Net/LDAP.html">the Net::LDAP manpage</A>, <A HREF="../../../../site/lib/Net/LDAP/Search.html">the Net::LDAP::Search manpage</A>, <A HREF="../../../../Net/LDAP/Constants.html">the Net::LDAP::Constants manpage</A></P>
  105. <P>
  106. <HR>
  107. <H1><A NAME="acknowledgements">ACKNOWLEDGEMENTS</A></H1>
  108. <P>This document is based on a document originally written by Russell Fulton
  109. <<EM><A HREF="mailto:r.fulton@auckland.ac.nz">r.fulton@auckland.ac.nz</A></EM>>.</P>
  110. <P>
  111. <HR>
  112. <H1><A NAME="author">AUTHOR</A></H1>
  113. <P>Graham Barr <<EM><A HREF="mailto:gbarr@pobox.com">gbarr@pobox.com</A></EM>></P>
  114. <P>
  115. <HR>
  116. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  117. <P>Copyright (c) 1997-1999 Graham Barr. All rights reserved. This program is
  118. free software; you can redistribute it and/or modify it under the same
  119. terms as Perl itself.</P>
  120. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  121. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  122. <STRONG><P CLASS=block> Net::LDAP::Message -- Message response from LDAP server</P></STRONG>
  123. </TD></TR>
  124. </TABLE>
  125.  
  126. </BODY>
  127.  
  128. </HTML>
  129.