Novell.Directory.Ldap.LdapSchema.getObjectClassSchema C# (CSharp) Method

getObjectClassSchema() public method

Returns a particular object class definition, or null if not found.
public getObjectClassSchema ( System name ) : LdapObjectClassSchema
name System The name or OID of the object class for which a /// definition is to be returned. /// ///
return LdapObjectClassSchema
        public virtual LdapObjectClassSchema getObjectClassSchema(System.String name)
        {
            return (LdapObjectClassSchema) getSchemaElement(OBJECT_CLASS, name);
        }