Novell.Directory.Ldap.LdapSearchResult.LdapSearchResult C# (CSharp) Method

LdapSearchResult() public method

Constructs an LdapSearchResult object from an LdapEntry.
public LdapSearchResult ( LdapEntry entry, LdapControl cont ) : System
entry LdapEntry the LdapEntry represented by this search result. /// ///
cont LdapControl controls associated with the search result ///
return System
        public LdapSearchResult(LdapEntry entry, LdapControl[] cont)
            : base()
        {
            if (entry == null)
            {
                throw new System.ArgumentException("Argument \"entry\" cannot be null");
            }
            this.entry = entry;
            return ;
        }

Same methods

LdapSearchResult::LdapSearchResult ( RfcLdapMessage message ) : System