10 references to SetQualifiedName
dotnet-svcutil-lib (10)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (3)
1185attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, _targetNamespace)); 1209attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, (attribute.Form == XmlSchemaForm.Qualified || (attribute.Form == XmlSchemaForm.None && _attributeFormDefault == XmlSchemaForm.Qualified)) ? _targetNamespace : null)); 1231attribute.SetQualifiedName(attribute.RefName);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (3)
834attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, _targetNamespace)); 858attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, (attribute.Form == XmlSchemaForm.Qualified || (attribute.Form == XmlSchemaForm.None && _attributeFormDefault == XmlSchemaForm.Qualified)) ? _targetNamespace : null)); 880attribute.SetQualifiedName(attribute.RefName);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (4)
2493tempXsiTypeSO.SetQualifiedName(new XmlQualifiedName("type", XmlReservedNs.NsXsi)); 2501tempxsiNilSO.SetQualifiedName(new XmlQualifiedName("nil", XmlReservedNs.NsXsi)); 2510tempxsiSLSO.SetQualifiedName(new XmlQualifiedName("schemaLocation", XmlReservedNs.NsXsi)); 2519tempxsiNoNsSLSO.SetQualifiedName(new XmlQualifiedName("noNamespaceSchemaLocation", XmlReservedNs.NsXsi));