System.Xml.Schema.SchemaCollectionCompiler.IsValidOccurrenceRangeRestriction C# (CSharp) Method

IsValidOccurrenceRangeRestriction() private method

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

Same methods

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