26 references to Constraints
System.Data (8)
fx\src\data\System\Data\XMLSchema.cs (8)
1300if ((dsElement != null) && (dsElement.Constraints!=null)) { 1301foreach (XmlSchemaIdentityConstraint key in dsElement.Constraints) { 1428if ((dsElement != null) && (dsElement.Constraints!=null)) { 1429foreach (XmlSchemaIdentityConstraint key in dsElement.Constraints) { 1452if ((dsElement != null) && (dsElement.Constraints!=null)) { 1453foreach (XmlSchemaIdentityConstraint key in dsElement.Constraints) { 2330if (node.Constraints != null) { 2331foreach (XmlSchemaIdentityConstraint key in node.Constraints) {
System.ServiceModel.Web (1)
System\ServiceModel\Dispatcher\HelpExampleGenerator.cs (1)
252foreach (XmlSchemaObject constraint in contentElement.Constraints)
System.Web.Services (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
2270global::System.Xml.Schema.XmlSchemaObjectCollection a = (global::System.Xml.Schema.XmlSchemaObjectCollection)o.@Constraints; 8708global::System.Xml.Schema.XmlSchemaObjectCollection a_18 = (global::System.Xml.Schema.XmlSchemaObjectCollection)o.@Constraints;
System.Xml (15)
System\Xml\Schema\Preprocessor.cs (2)
1194for (int i = 0; i < element.Constraints.Count; ++i) { 1195XmlSchemaIdentityConstraint identityConstraint = (XmlSchemaIdentityConstraint)element.Constraints[i];
System\Xml\Schema\SchemaCollectionCompiler.cs (3)
308for (int i = 0; i < element.Constraints.Count; ++i) { 309((XmlSchemaIdentityConstraint)element.Constraints[i]).CompiledConstraint = null; 1900XmlSchemaObjectCollection constraints = xe.Constraints;
System\Xml\Schema\SchemaCollectionpreProcessor.cs (3)
883for (int i = 0; i < element.Constraints.Count; ++i) { 884SetParent(element.Constraints[i], element); 885PreprocessIdentityConstraint((XmlSchemaIdentityConstraint)element.Constraints[i]);
System\Xml\Schema\SchemaSetCompiler.cs (3)
309for (int i = 0; i < element.Constraints.Count; ++i) { 310((XmlSchemaIdentityConstraint)element.Constraints[i]).CompiledConstraint = null; 2255XmlSchemaObjectCollection constraints = xe.Constraints;
System\Xml\Schema\XsdBuilder.cs (3)
1350if (builder.element.Constraints.Count != 0) { 1490if (builder.element.Constraints.Count != 0) { 1996builder.element.Constraints.Add(builder.identityConstraint);
System\Xml\Serialization\SchemaObjectWriter.cs (1)
853WriteSortedItems(o.Constraints);