4 overrides of IsEmpty
System.Xml (4)
System\Xml\Schema\XmlSchemaAll.cs (1)
29
internal override bool
IsEmpty
{
System\Xml\Schema\XmlSchemaChoice.cs (1)
33
internal override bool
IsEmpty
{
System\Xml\Schema\XmlSchemaParticle.cs (1)
154
internal override bool
IsEmpty
{
System\Xml\Schema\XmlSchemaSequence.cs (1)
32
internal override bool
IsEmpty
{
9 references to IsEmpty
System.Xml (9)
System\Xml\Schema\SchemaCollectionCompiler.cs (3)
854
if (particle == null || particle.
IsEmpty
) {
1354
else if (particle != null && !particle.
IsEmpty
) {
2078
Debug.Assert(!p.
IsEmpty
);
System\Xml\Schema\SchemaSetCompiler.cs (3)
947
if (particle == null || particle.
IsEmpty
) {
1628
else if (particle != null && !particle.
IsEmpty
) {
2434
Debug.Assert(!((XmlSchemaParticle)particles[i]).
IsEmpty
);
System\Xml\Schema\XmlSchemaAll.cs (1)
30
get { return base.
IsEmpty
|| items.Count == 0; }
System\Xml\Schema\XmlSchemaChoice.cs (1)
34
get { return base.
IsEmpty
/*|| items.Count == 0*/; }
System\Xml\Schema\XmlSchemaSequence.cs (1)
33
get { return base.
IsEmpty
|| items.Count == 0; }