3 writes to Constraints
System.Xml (3)
System\Xml\Schema\SchemaCollectionCompiler.cs (1)
1908decl.Constraints = compiledConstraints;
System\Xml\Schema\SchemaSetCompiler.cs (1)
2263decl.Constraints = compiledConstraints;
System\Xml\Schema\XmlSchemaValidator.cs (1)
1448elementDeclXsi.Constraints = elementDecl.Constraints;
9 references to Constraints
System.Xml (9)
System\Xml\Schema\XmlSchemaValidator.cs (5)
1448elementDeclXsi.Constraints = elementDecl.Constraints; 1484if (ProcessIdentityConstraints && context.ElementDecl.Constraints != null) { 1809context.Constr = new ConstraintStruct[currentElementDecl.Constraints.Length]; 1811for (int i = 0; i < currentElementDecl.Constraints.Length; ++i) 1813context.Constr[id++] = new ConstraintStruct(currentElementDecl.Constraints[i]);
System\Xml\Schema\XsdValidator.cs (4)
697if (context.ElementDecl.Constraints != null) { 712context.Constr = new ConstraintStruct[context.ElementDecl.Constraints.Length]; 714for (int i = 0; i < context.ElementDecl.Constraints.Length; ++i) { 715context.Constr[id++] = new ConstraintStruct (context.ElementDecl.Constraints[i]);