3 writes to Constraints
System.Private.Xml (3)
System\Xml\Schema\SchemaCollectionCompiler.cs (1)
2322
decl.
Constraints
= compiledConstraints;
System\Xml\Schema\SchemaSetCompiler.cs (1)
2792
decl.
Constraints
= compiledConstraints;
System\Xml\Schema\XmlSchemaValidator.cs (1)
1712
elementDeclXsi.
Constraints
= elementDecl.Constraints;
9 references to Constraints
System.Private.Xml (9)
System\Xml\Schema\XmlSchemaValidator.cs (5)
1712
elementDeclXsi.Constraints = elementDecl.
Constraints
;
1755
if (ProcessIdentityConstraints && _context.ElementDecl!.
Constraints
!= null)
2148
_context.Constr = new ConstraintStruct[currentElementDecl.
Constraints
!.Length];
2150
for (int i = 0; i < currentElementDecl.
Constraints
.Length; ++i)
2152
_context.Constr[id++] = new ConstraintStruct(currentElementDecl.
Constraints
[i]);
System\Xml\Schema\XsdValidator.cs (4)
831
if (context.ElementDecl.
Constraints
!= null)
850
context!.Constr = new ConstraintStruct[context.ElementDecl!.
Constraints
!.Length];
852
for (int i = 0; i < context.ElementDecl.
Constraints
.Length; ++i)
854
context.Constr[id++] = new ConstraintStruct(context.ElementDecl.
Constraints
[i]);