4 overrides of IsEmpty
System.Private.Xml (4)
System\Xml\Schema\XmlSchemaAll.cs (1)
19internal override bool IsEmpty
System\Xml\Schema\XmlSchemaChoice.cs (1)
23internal override bool IsEmpty
System\Xml\Schema\XmlSchemaParticle.cs (1)
165internal override bool IsEmpty
System\Xml\Schema\XmlSchemaSequence.cs (1)
22internal override bool IsEmpty
9 references to IsEmpty
System.Private.Xml (9)
System\Xml\Schema\SchemaCollectionCompiler.cs (3)
1070if (particle == null || particle.IsEmpty) 1704else if (particle != null && !particle.IsEmpty) 2531Debug.Assert(!p.IsEmpty);
System\Xml\Schema\SchemaSetCompiler.cs (3)
1200if (particle == null || particle.IsEmpty) 2055else if (particle != null && !particle.IsEmpty) 2912Debug.Assert(!((XmlSchemaParticle)particles[i]).IsEmpty);
System\Xml\Schema\XmlSchemaAll.cs (1)
21get { return base.IsEmpty || _items.Count == 0; }
System\Xml\Schema\XmlSchemaChoice.cs (1)
25get { return base.IsEmpty /*|| items.Count == 0*/; }
System\Xml\Schema\XmlSchemaSequence.cs (1)
24get { return base.IsEmpty || _items.Count == 0; }