Novell.Directory.Ldap.LdapDN.explodeRDN C# (CSharp) Method

explodeRDN() public static method

Returns the individual components of a relative distinguished name (RDN), normalized.
public static explodeRDN ( System rdn, bool noTypes ) : System.String[]
rdn System The relative distinguished name, or in other words, /// the left-most component of a distinguished name. /// ///
noTypes bool If true, returns only the values of the /// components, and not the names of the component, for /// example "Babs Jensen" instead of "cn=Babs Jensen". /// ///
return System.String[]
        public static System.String[] explodeRDN(System.String rdn, bool noTypes)
        {
            RDN rdnToExplode = new RDN(rdn);
            return rdnToExplode.explodeRDN(noTypes);
        }