5 implementations of SchemaAttribute
System.Private.Xml (5)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
1067XmlSchemaAttribute? IXmlSchemaInfo.SchemaAttribute
System\Xml\Core\XsdValidatingReader.cs (1)
1865XmlSchemaAttribute? IXmlSchemaInfo.SchemaAttribute
System\Xml\Dom\XmlName.cs (1)
163public virtual XmlSchemaAttribute? SchemaAttribute
System\Xml\Schema\XmlSchemaInfo.cs (1)
114public XmlSchemaAttribute? SchemaAttribute
System\Xml\XPath\XPathNavigatorReader.cs (1)
1136public XmlSchemaAttribute? SchemaAttribute { get { return IsReading ? this.schemaInfo!.SchemaAttribute : null; } }
6 references to SchemaAttribute
System.Private.Xml (6)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
1071return _readerAsIXmlSchemaInfo.SchemaAttribute;
System\Xml\Dom\DocumentSchemaValidator.cs (1)
142partialValidationType = nodeToValidate.SchemaInfo.SchemaAttribute;
System\Xml\Dom\XmlName.cs (2)
211: (object?)schemaInfo.SchemaAttribute; 296&& (object?)schemaInfo.SchemaAttribute == (object?)(_decl as XmlSchemaAttribute))
System\Xml\XPath\XPathNavigator.cs (1)
1027schemaAttribute = schemaInfo.SchemaAttribute;
System\Xml\XPath\XPathNavigatorReader.cs (1)
1136public XmlSchemaAttribute? SchemaAttribute { get { return IsReading ? this.schemaInfo!.SchemaAttribute : null; } }