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)
826attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, _targetNamespace)); 850attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, (attribute.Form == XmlSchemaForm.Qualified || (attribute.Form == XmlSchemaForm.None && _attributeFormDefault == XmlSchemaForm.Qualified)) ? _targetNamespace : null)); 872attribute.SetQualifiedName(attribute.RefName);
System\Xml\Schema\XmlSchemaValidator.cs (4)
2478tempXsiTypeSO.SetQualifiedName(new XmlQualifiedName("type", XmlReservedNs.NsXsi)); 2486tempxsiNilSO.SetQualifiedName(new XmlQualifiedName("nil", XmlReservedNs.NsXsi)); 2495tempxsiSLSO.SetQualifiedName(new XmlQualifiedName("schemaLocation", XmlReservedNs.NsXsi)); 2504tempxsiNoNsSLSO.SetQualifiedName(new XmlQualifiedName("noNamespaceSchemaLocation", XmlReservedNs.NsXsi));