Manpages

Manpage of REFERENCE

REFERENCE

Section: User Contributed Perl Documentation (1)
Updated: 2001-08-24
Index
Return to Main Contents
 

NAME

Net::LDAP::Reference - search reference  

SYNOPSIS

  use Net::LDAP;


  $ldap->search( @search_args, callback => \&process);


  sub process {
    my $mesg = shift;
    my $obj = shift;
    if (!$obj) {
      # Search complete
    }
    elsif ($obj->isa('Net::LDAP::Reference')) {
      my $ref;


      foreach $ref ($obj->references) {
        # process ref
      }
    }
    else {
      # Process Net::LDAP::Entry
    }
  }


 

DESCRIPTION

 

METHODS

references
Returns a list of references from the server.
 

SEE ALSO

Net::LDAP, Net::LDAP::Search  

AUTHOR

Graham Barr <gbarr@pobox.com>.

Please report any bugs, or post any suggestions, to the perl-ldap mailing list <perl-ldap-dev@lists.sourceforge.net>.  

COPYRIGHT

Copyright (c) 1997-2000 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

$Id: Reference.pod,v 1.3 2001/08/24 19:31:14 gbarr Exp $


 

Index

NAME
SYNOPSIS
DESCRIPTION
METHODS
SEE ALSO
AUTHOR
COPYRIGHT

This document was created by man2html, using the manual pages.
Time: 12:47:39 GMT, April 25, 2024