System.Xml.Xsl.XmlQueryTypeFactory.Intersect C# (CSharp) Méthode

Intersect() public méthode

Construct the intersection of two XmlQueryTypes
public Intersect ( XmlQueryType left, XmlQueryType right ) : XmlQueryType
left XmlQueryType the left type
right XmlQueryType the right type
Résultat XmlQueryType
        public XmlQueryType Intersect(XmlQueryType left, XmlQueryType right) {
            return SequenceType.Create(ChoiceType.Create(PrimeIntersect(left, right)), left.Cardinality & right.Cardinality);
        }

Same methods

XmlQueryTypeFactory::Intersect ( ) : XmlQueryType