9 writes to IsNill
System.Xml (9)
System\Xml\Schema\DtdValidator.cs (2)
145context.IsNill = true; // reusing IsNill - what is this flag later used for?? 423context.IsNill = false;
System\Xml\Schema\XdrValidator.cs (2)
208context.IsNill = true; // reusing IsNill 545context.IsNill = false;
System\Xml\Schema\XmlSchemaValidator.cs (2)
1299context.IsNill = false; 1398context.IsNill = XmlConvert.ToBoolean(xsiNil);
System\Xml\Schema\XsdValidator.cs (3)
357context.IsNill = XmlConvert.ToBoolean(xsiNil); 380context.IsNill = true; // reusing IsNill 660context.IsNill = false;
19 references to IsNill
System.Xml (19)
System\Xml\Schema\BaseValidator.cs (2)
143if (context.IsNill) { 171if (context.IsNill) {
System\Xml\Schema\XdrValidator.cs (1)
206if (reader.IsEmptyElement && !context.IsNill && context.ElementDecl.DefaultValueTyped != null) {
System\Xml\Schema\XmlSchemaValidator.cs (11)
430schemaInfo.IsNil = context.IsNill; 681if (context.IsNill) { 748if (context.IsNill) { 815schemaInfo.IsNil = context.IsNill; 1023if (!context.IsNill) { 1073schemaInfo.IsNil = context.IsNill; 1125if (context.IsNill) { 1212if (!context.IsNill) { 1249if (!context.IsNill) { 1399if (context.IsNill && elementDecl.Presence == SchemaDeclBase.Use.Fixed) { 1528if (context.IsNill) { //Nil and fixed is error; Nil and default is compile time error
System\Xml\Schema\XsdValidator.cs (5)
170if (context.IsNill) { 281if (!context.IsNill) { 288if (checkDatatype && !context.IsNill) { 358if (context.IsNill && elementDecl.DefaultValueTyped != null) { 378if (reader.IsEmptyElement && !context.IsNill && context.ElementDecl.DefaultValueTyped != null) {