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

Sequence() public static method

Construct the sequence of two XmlQueryTypes
public static Sequence ( XmlQueryType left, XmlQueryType right ) : XmlQueryType
left XmlQueryType the left type
right XmlQueryType the right type
return XmlQueryType
        public static XmlQueryType Sequence(XmlQueryType left, XmlQueryType right) {
            return SequenceType.Create(ChoiceType.Create(PrimeChoice(new List<XmlQueryType>(left), right)), left.Cardinality + right.Cardinality);
        }

Same methods

XmlQueryTypeFactory::Sequence ( ) : XmlQueryType