Novell.Directory.Ldap.Rfc2251.RfcFilter.addPresent C# (CSharp) Method

addPresent() public method

Creates and adds a present matching to the filter.
public addPresent ( System attrName ) : void
attrName System Name of the attribute to check for presence. /// @throws LdapLocalException /// Occurs if addPresent is called out of sequence. ///
return void
        public virtual void addPresent(System.String attrName)
        {
            Asn1Object current = new Asn1Tagged(new Asn1Identifier(Asn1Identifier.CONTEXT, false, PRESENT), new RfcAttributeDescription(attrName), false);
            addObject(current);
            return ;
        }