1 write to Prefix
System.Xml (1)
System\Xml\Schema\XdrBuilder.cs (1)
678builder._ElementDef._ElementDecl.Prefix = prefix;
16 references to Prefix
System.Xml (16)
System\Xml\Core\XmlTextReaderImpl.cs (1)
8248string prefix = nameTable.Add( attrDef.Prefix );
System\Xml\Dom\XmlDocument.cs (1)
554attrPrefix = attdef.Prefix;
System\Xml\Dom\XmlLoader.cs (2)
588doc.AddXmlName(elementDecl.Prefix, elementDecl.Name.Name, string.Empty, null), 589doc.AddAttrXmlName(attdef.Prefix, attdef.Name.Name, string.Empty, null));
System\Xml\Schema\DtdParser.cs (4)
650if ( attrDef != null && attrDef.Prefix.Length > 0 && attrDef.Prefix.Equals( "xml" ) && attrDef.Name.Name == "space" ) { 672if (attrDef.Prefix.Length > 0 && attrDef.Prefix.Equals("xml")) {
System\Xml\Schema\DtdParserAsync.cs (4)
295if ( attrDef != null && attrDef.Prefix.Length > 0 && attrDef.Prefix.Equals( "xml" ) && attrDef.Name.Name == "space" ) { 317if (attrDef.Prefix.Length > 0 && attrDef.Prefix.Equals("xml")) {
System\Xml\Schema\SchemaAttDef.cs (1)
64get { return ((SchemaAttDef)this).Prefix; }
System\Xml\Schema\SchemaElementDecl.cs (1)
70get { return ((SchemaElementDecl)this).Prefix; }
System\Xml\Schema\XdrBuilder.cs (2)
639builder.SendValidationEvent(Res.Sch_UndeclaredElement, XmlQualifiedName.ToString(ed.Name.Name, ed.Prefix)); 1548XmlQualifiedName.ToString(_ElementDef._ElementDecl.Name.Name, _ElementDef._ElementDecl.Prefix));