10 references to SetQualifiedName
System.Private.Xml (10)
System\Xml\Schema\Preprocessor.cs (3)
1152attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, _targetNamespace)); 1176attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, (attribute.Form == XmlSchemaForm.Qualified || (attribute.Form == XmlSchemaForm.None && _attributeFormDefault == XmlSchemaForm.Qualified)) ? _targetNamespace : null)); 1198attribute.SetQualifiedName(attribute.RefName);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (3)
823attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, _targetNamespace)); 847attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, (attribute.Form == XmlSchemaForm.Qualified || (attribute.Form == XmlSchemaForm.None && _attributeFormDefault == XmlSchemaForm.Qualified)) ? _targetNamespace : null)); 869attribute.SetQualifiedName(attribute.RefName);
System\Xml\Schema\XmlSchemaValidator.cs (4)
2473tempXsiTypeSO.SetQualifiedName(new XmlQualifiedName("type", XmlReservedNs.NsXsi)); 2481tempxsiNilSO.SetQualifiedName(new XmlQualifiedName("nil", XmlReservedNs.NsXsi)); 2490tempxsiSLSO.SetQualifiedName(new XmlQualifiedName("schemaLocation", XmlReservedNs.NsXsi)); 2499tempxsiNoNsSLSO.SetQualifiedName(new XmlQualifiedName("noNamespaceSchemaLocation", XmlReservedNs.NsXsi));