Novell.Directory.Ldap.Utilclass.ReferralInfo.ReferralInfo C# (CSharp) Method

ReferralInfo() public method

Construct the ReferralInfo class
public ReferralInfo ( LdapConnection lc, System refList, LdapUrl refUrl ) : System
lc Novell.Directory.Ldap.LdapConnection The DirectoryEntry opened to process this referral /// ///
refList System
refUrl Novell.Directory.Ldap.LdapUrl The URL string associated with this connection ///
return System
        public ReferralInfo(LdapConnection lc, System.String[] refList, LdapUrl refUrl)
        {
            conn = lc;
            referralUrl = refUrl;
            referralList = refList;
            return ;
        }
ReferralInfo