5 implementations of SchemaElement
System.Private.Xml (5)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
1059XmlSchemaElement? IXmlSchemaInfo.SchemaElement
System\Xml\Core\XsdValidatingReader.cs (1)
1852XmlSchemaElement? IXmlSchemaInfo.SchemaElement
System\Xml\Dom\XmlName.cs (1)
155public virtual XmlSchemaElement? SchemaElement
System\Xml\Schema\XmlSchemaInfo.cs (1)
98public XmlSchemaElement? SchemaElement
System\Xml\XPath\XPathNavigatorReader.cs (1)
1135public XmlSchemaElement? SchemaElement { get { return IsReading ? this.schemaInfo!.SchemaElement : null; } }
10 references to SchemaElement
System.Private.Xml (10)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
1063return _readerAsIXmlSchemaInfo.SchemaElement;
System\Xml\Dom\DocumentSchemaValidator.cs (3)
103XmlSchemaElement? schemaElement = schemaInfo.SchemaElement; 497if (parentSchemaInfo.SchemaElement != null || parentSchemaInfo.SchemaType != null) 518XmlSchemaObject? ancestorSchemaObject = parentSchemaInfo.SchemaElement;
System\Xml\Dom\XmlName.cs (3)
209_decl = schemaInfo.SchemaElement != null 210? (object)schemaInfo.SchemaElement 295&& (object?)schemaInfo.SchemaElement == (object?)(_decl as XmlSchemaElement)
System\Xml\XPath\XPathNavigator.cs (1)
1010schemaElement = schemaInfo.SchemaElement;
System\Xml\XPath\XPathNavigatorReader.cs (1)
1135public XmlSchemaElement? SchemaElement { get { return IsReading ? this.schemaInfo!.SchemaElement : null; } }
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (1)
803return XmlQueryTypeFactory.Type(nav.NodeType, XmlQualifiedNameTest.New(nav.LocalName, nav.NamespaceURI), nav.XmlType, nav.SchemaInfo!.SchemaElement!.IsNillable);