1 write to Prefix
System.Private.Xml (1)
System\Xml\Schema\XdrBuilder.cs (1)
737builder._ElementDef._ElementDecl!.Prefix = prefix;
16 references to Prefix
System.Private.Xml (16)
System\Xml\Core\XmlTextReaderImpl.cs (1)
9239string? prefix = _nameTable.Add(attrDef.Prefix);
System\Xml\Dom\XmlDocument.cs (1)
682attrPrefix = attdef.Prefix;
System\Xml\Dom\XmlLoader.cs (2)
669_doc.AddXmlName(elementDecl.Prefix, elementDecl.Name.Name, string.Empty, null), 670_doc.AddAttrXmlName(attdef.Prefix, attdef.Name.Name, string.Empty, null));
System\Xml\Schema\DtdParser.cs (4)
682if (attrDef != null && attrDef.Prefix.Length > 0 && attrDef.Prefix.Equals("xml") && attrDef.Name.Name == "space") 706if (attrDef.Prefix.Length > 0 && attrDef.Prefix.Equals("xml"))
System\Xml\Schema\DtdParserAsync.cs (4)
326if (attrDef != null && attrDef.Prefix.Length > 0 && attrDef.Prefix.Equals("xml") && attrDef.Name.Name == "space") 350if (attrDef.Prefix.Length > 0 && attrDef.Prefix.Equals("xml"))
System\Xml\Schema\SchemaAttDef.cs (1)
57get { return ((SchemaAttDef)this).Prefix; }
System\Xml\Schema\SchemaElementDecl.cs (1)
66get { return ((SchemaElementDecl)this).Prefix; }
System\Xml\Schema\XdrBuilder.cs (2)
697builder.SendValidationEvent(SR.Sch_UndeclaredElement, XmlQualifiedName.ToString(ed!.Name.Name, ed.Prefix)); 1774XmlQualifiedName.ToString(_ElementDef._ElementDecl.Name.Name, _ElementDef._ElementDecl.Prefix));