10 references to SetQualifiedName
System.Xml (10)
System\Xml\Schema\Preprocessor.cs (3)
979attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, this.targetNamespace)); 998attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, (attribute.Form == XmlSchemaForm.Qualified || (attribute.Form == XmlSchemaForm.None && this.attributeFormDefault == XmlSchemaForm.Qualified)) ? this.targetNamespace : null)); 1016attribute.SetQualifiedName(attribute.RefName);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (3)
671attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, this.targetNamespace)); 690attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, (attribute.Form == XmlSchemaForm.Qualified || (attribute.Form == XmlSchemaForm.None && this.attributeFormDefault == XmlSchemaForm.Qualified)) ? this.targetNamespace : null)); 708attribute.SetQualifiedName(attribute.RefName);
System\Xml\Schema\XmlSchemaValidator.cs (4)
2072tempXsiTypeSO.SetQualifiedName(new XmlQualifiedName("type", XmlReservedNs.NsXsi)); 2079tempxsiNilSO.SetQualifiedName(new XmlQualifiedName("nil", XmlReservedNs.NsXsi)); 2087tempxsiSLSO.SetQualifiedName(new XmlQualifiedName("schemaLocation", XmlReservedNs.NsXsi)); 2095tempxsiNoNsSLSO.SetQualifiedName(new XmlQualifiedName("noNamespaceSchemaLocation", XmlReservedNs.NsXsi));