System.Xml.Schema.Compiler.IsValidOccurrenceRangeRestriction C# (CSharp) Méthode

IsValidOccurrenceRangeRestriction() private méthode

private IsValidOccurrenceRangeRestriction ( XmlSchemaParticle derivedParticle, XmlSchemaParticle baseParticle ) : bool
derivedParticle XmlSchemaParticle
baseParticle XmlSchemaParticle
Résultat bool
        private bool IsValidOccurrenceRangeRestriction(XmlSchemaParticle derivedParticle, XmlSchemaParticle baseParticle) {
            return IsValidOccurrenceRangeRestriction(derivedParticle.MinOccurs, derivedParticle.MaxOccurs, baseParticle.MinOccurs, baseParticle.MaxOccurs);
        }

Same methods

Compiler::IsValidOccurrenceRangeRestriction ( decimal minOccurs, decimal maxOccurs, decimal baseMinOccurs, decimal baseMaxOccurs ) : bool
Compiler