1 write to targetNamespace
System.Xml (1)
System\Xml\Schema\Preprocessor.cs (1)
571this.targetNamespace = targetNamespace == null ? string.Empty : targetNamespace;
12 references to targetNamespace
System.Xml (12)
System\Xml\Schema\Preprocessor.cs (12)
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)); 1055attributeGroup.SetQualifiedName(new XmlQualifiedName(attributeGroup.Name, this.targetNamespace)); 1068element.SetQualifiedName(new XmlQualifiedName(element.Name, this.targetNamespace)); 1111element.SetQualifiedName(new XmlQualifiedName(element.Name, (element.Form == XmlSchemaForm.Qualified || (element.Form == XmlSchemaForm.None && this.elementFormDefault == XmlSchemaForm.Qualified))? this.targetNamespace : null)); 1206constraint.SetQualifiedName(new XmlQualifiedName(constraint.Name, this.targetNamespace)); 1259simpleType.SetQualifiedName(new XmlQualifiedName(simpleType.Name, this.targetNamespace)); 1369complexType.SetQualifiedName(new XmlQualifiedName(complexType.Name, this.targetNamespace)); 1520group.SetQualifiedName(new XmlQualifiedName(group.Name, this.targetNamespace)); 1545notation.QualifiedName = new XmlQualifiedName(notation.Name, this.targetNamespace); 1635((XmlSchemaAny)particle).BuildNamespaceList(this.targetNamespace); 1669anyAttribute.BuildNamespaceList(this.targetNamespace);