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

getFilterIterator() public method

Creates an iterator over the preparsed segments of a filter. The first object returned by an iterator is an integer indicating the type of filter components. Subseqence values are returned. If a component is of type 'AND' or 'OR' or 'NOT' then the value returned is another iterator. This iterator is used by toString.
public getFilterIterator ( ) : System.Collections.IEnumerator
return System.Collections.IEnumerator
        public virtual System.Collections.IEnumerator getFilterIterator()
        {
            return new FilterIterator(this, (Asn1Tagged) this.choiceValue());
        }