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

AtMost() public static méthode

Compute a sequence of zero to some max cardinality.
public static AtMost ( XmlQueryType t, XmlQueryCardinality c ) : XmlQueryType
t XmlQueryType the type to sequence
c XmlQueryCardinality the upper bound
Résultat XmlQueryType
        public static XmlQueryType AtMost(XmlQueryType t, XmlQueryCardinality c) {
            return PrimeProduct(t, c.AtMost());
        }