Ejemplo n.º 1
0
 internal override void CheckRecursion(int depth, ValidationEventHandler h, XmlSchema schema)
 {
     foreach (XmlSchemaObject xmlSchemaObject in this.Items)
     {
         XmlSchemaParticle xmlSchemaParticle = (XmlSchemaParticle)xmlSchemaObject;
         xmlSchemaParticle.CheckRecursion(depth, h, schema);
     }
 }