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