5 implementations of SchemaElement
dotnet-svcutil-lib (5)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlAsyncCheckReader.cs (1)
1085XmlSchemaElement IXmlSchemaInfo.SchemaElement
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReader.cs (1)
1766XmlSchemaElement IXmlSchemaInfo.SchemaElement
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlName.cs (1)
161public virtual XmlSchemaElement SchemaElement
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaInfo.cs (1)
104public XmlSchemaElement SchemaElement
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigatorReader.cs (1)
1139public virtual XmlSchemaElement SchemaElement { get { return IsReading ? this.schemaInfo.SchemaElement : null; } }
9 references to SchemaElement
dotnet-svcutil-lib (9)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlAsyncCheckReader.cs (1)
1089return _readerAsIXmlSchemaInfo.SchemaElement;
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentSchemaValidator.cs (3)
109XmlSchemaElement schemaElement = schemaInfo.SchemaElement; 522if (parentSchemaInfo.SchemaElement != null || parentSchemaInfo.SchemaType != null) 543XmlSchemaObject ancestorSchemaObject = parentSchemaInfo.SchemaElement;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlName.cs (3)
223_decl = schemaInfo.SchemaElement != null 224? (object)schemaInfo.SchemaElement 309&& (object)schemaInfo.SchemaElement == (object)(_decl as XmlSchemaElement)
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigator.cs (1)
1069schemaElement = schemaInfo.SchemaElement;
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigatorReader.cs (1)
1139public virtual XmlSchemaElement SchemaElement { get { return IsReading ? this.schemaInfo.SchemaElement : null; } }