Novell.Directory.Ldap.LdapSchemaElement.setQualifier C# (CSharp) Méthode

setQualifier() public méthode

Sets the values of a specified optional or non-standard qualifier of the element. The setQualifier method is used to set the values of vendor- specific qualifiers (which begin with "X-").
public setQualifier ( System name, System values ) : void
name System The name of the qualifier, case-sensitive. /// ///
values System The values to set for the qualifier. ///
Résultat void
        public virtual void setQualifier(System.String name, System.String[] values)
        {
            AttributeQualifier attrQualifier = new AttributeQualifier(name, values);
            SupportClass.PutElement(hashQualifier, name, attrQualifier);

            /*
            * This is the only method that modifies the schema element.
            * We need to reset the attribute value since it has changed.
            */
            base.Value = formatString();
            return ;
        }