3 writes to Constraints
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (1)
2407decl.Constraints = compiledConstraints;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (1)
2850decl.Constraints = compiledConstraints;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (1)
1744elementDeclXsi.Constraints = elementDecl.Constraints;
9 references to Constraints
dotnet-svcutil-lib (9)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (5)
1744elementDeclXsi.Constraints = elementDecl.Constraints; 1787if (ProcessIdentityConstraints && _context.ElementDecl.Constraints != null) 2188_context.Constr = new ConstraintStruct[currentElementDecl.Constraints.Length]; 2190for (int i = 0; i < currentElementDecl.Constraints.Length; ++i) 2192_context.Constr[id++] = new ConstraintStruct(currentElementDecl.Constraints[i]);
FrameworkFork\Microsoft.Xml\Xml\schema\xsdvalidator.cs (4)
849if (context.ElementDecl.Constraints != null) 868context.Constr = new ConstraintStruct[context.ElementDecl.Constraints.Length]; 870for (int i = 0; i < context.ElementDecl.Constraints.Length; ++i) 872context.Constr[id++] = new ConstraintStruct(context.ElementDecl.Constraints[i]);