System.Xml.Xsl.XmlQueryTypeFactory.Sequence C# (CSharp) Method

Sequence() public method

Construct the sequence of several XmlQueryTypes
public Sequence ( ) : XmlQueryType
return XmlQueryType
        public XmlQueryType Sequence(params XmlQueryType[] types) {
            XmlQueryCardinality card = XmlQueryCardinality.Zero;

            foreach (XmlQueryType t in types)
                card += t.Cardinality;

            return PrimeProduct(Choice(types), card);
        }
    #endif

Same methods

XmlQueryTypeFactory::Sequence ( XmlQueryType left, XmlQueryType right ) : XmlQueryType