1 write to targetNamespace
System.Xml (1)
System\Xml\Schema\SchemaCollectionpreProcessor.cs (1)
362this.targetNamespace = targetNamespace == null ? string.Empty : targetNamespace;
12 references to targetNamespace
System.Xml (12)
System\Xml\Schema\SchemaCollectionpreProcessor.cs (12)
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)); 745attributeGroup.SetQualifiedName(new XmlQualifiedName(attributeGroup.Name, this.targetNamespace)); 758element.SetQualifiedName(new XmlQualifiedName(element.Name, this.targetNamespace)); 801element.SetQualifiedName(new XmlQualifiedName(element.Name, (element.Form == XmlSchemaForm.Qualified || (element.Form == XmlSchemaForm.None && this.elementFormDefault == XmlSchemaForm.Qualified))? this.targetNamespace : null)); 894constraint.SetQualifiedName(new XmlQualifiedName(constraint.Name, this.targetNamespace)); 947simpleType.SetQualifiedName(new XmlQualifiedName(simpleType.Name, this.targetNamespace)); 1055complexType.SetQualifiedName(new XmlQualifiedName(complexType.Name, this.targetNamespace)); 1206group.SetQualifiedName(new XmlQualifiedName(group.Name, this.targetNamespace)); 1230notation.QualifiedName = new XmlQualifiedName(notation.Name, this.targetNamespace); 1323((XmlSchemaAny)particle).BuildNamespaceListV1Compat(this.targetNamespace); 1357anyAttribute.BuildNamespaceListV1Compat(this.targetNamespace);