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