13 references to QualifiedName
System.Xml (13)
System\Xml\Schema\CompiledidEntityConstraint.cs (1)
46this.name = constraint.QualifiedName;
System\Xml\Schema\Preprocessor.cs (3)
1213if (rootSchema.IdentityConstraints[constraint.QualifiedName] != null) { 1214SendValidationEvent(Res.Sch_DupIdentityConstraint, constraint.QualifiedName.ToString(), constraint); 1218rootSchema.IdentityConstraints.Add(constraint.QualifiedName, constraint);
System\Xml\Schema\SchemaCollectionCompiler.cs (2)
1769throw new XmlSchemaException(Res.Sch_RefInvalidCardin, xi.QualifiedName.ToString(), xi); 1773throw new XmlSchemaException(Res.Sch_ReftoKeyref, xi.QualifiedName.ToString(), xi);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (3)
901if (this.schema.IdentityConstraints[constraint.QualifiedName] != null) { 902SendValidationEvent(Res.Sch_DupIdentityConstraint, constraint.QualifiedName.ToString(), constraint); 906this.schema.IdentityConstraints.Add(constraint.QualifiedName, constraint);
System\Xml\Schema\SchemaSetCompiler.cs (3)
93AddToTable(identityConstraints, ic.QualifiedName, ic); 2115throw new XmlSchemaException(Res.Sch_RefInvalidCardin, xi.QualifiedName.ToString(), xi); 2119throw new XmlSchemaException(Res.Sch_ReftoKeyref, xi.QualifiedName.ToString(), xi);
System\Xml\Serialization\SchemaObjectWriter.cs (1)
104return ((XmlSchemaIdentityConstraint)o).QualifiedName;