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

LdapUrl() public method

Constructs a URL object with the specified string as the URL.
MalformedURLException The specified URL cannot be parsed. ///
public LdapUrl ( System url ) : System
url System An Ldap URL string, e.g. /// "ldap://ldap.example.com:80/dc=example,dc=com?cn, /// sn?sub?(objectclass=inetOrgPerson)". /// ///
return System
        public LdapUrl(System.String url)
        {
            InitBlock();
            parseURL(url);
            return ;
        }

Same methods

LdapUrl::LdapUrl ( System host, int port, System dn ) : System
LdapUrl::LdapUrl ( System host, int port, System dn, System attrNames, int scope, System filter, System extensions ) : System
LdapUrl::LdapUrl ( System host, int port, System dn, System attrNames, int scope, System filter, System extensions, bool secure ) : System