5 implementations of SchemaElement
System.Xml (5)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
908XmlSchemaElement IXmlSchemaInfo.SchemaElement {
System\Xml\Core\XsdValidatingReader.cs (1)
1446XmlSchemaElement IXmlSchemaInfo.SchemaElement {
System\Xml\Dom\XmlName.cs (1)
127public virtual XmlSchemaElement SchemaElement {
System\Xml\Schema\XmlSchemaInfo.cs (1)
83public XmlSchemaElement SchemaElement {
System\Xml\XPath\XPathNavigatorReader.cs (1)
987public virtual XmlSchemaElement SchemaElement { get { return IsReading ? this.schemaInfo.SchemaElement : null; } }
10 references to SchemaElement
System.Data.SqlXml (1)
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (1)
756return XmlQueryTypeFactory.Type(nav.NodeType, XmlQualifiedNameTest.New(nav.LocalName, nav.NamespaceURI), nav.XmlType, nav.SchemaInfo.SchemaElement.IsNillable);
System.Xml (9)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
910return readerAsIXmlSchemaInfo.SchemaElement;
System\Xml\Dom\DocumentSchemaValidator.cs (3)
104XmlSchemaElement schemaElement = schemaInfo.SchemaElement; 452if (parentSchemaInfo.SchemaElement != null || parentSchemaInfo.SchemaType != null) { 470XmlSchemaObject ancestorSchemaObject = parentSchemaInfo.SchemaElement;
System\Xml\Dom\XmlName.cs (3)
179decl = schemaInfo.SchemaElement != null 180? (object)schemaInfo.SchemaElement 247&& (object)schemaInfo.SchemaElement == (object)(decl as XmlSchemaElement)
System\Xml\XPath\XPathNavigator.cs (1)
891schemaElement = schemaInfo.SchemaElement;
System\Xml\XPath\XPathNavigatorReader.cs (1)
987public virtual XmlSchemaElement SchemaElement { get { return IsReading ? this.schemaInfo.SchemaElement : null; } }