5 implementations of MemberType
System.Private.Xml (5)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
1043XmlSchemaSimpleType? IXmlSchemaInfo.MemberType
System\Xml\Core\XsdValidatingReader.cs (1)
1797XmlSchemaSimpleType? IXmlSchemaInfo.MemberType
System\Xml\Dom\XmlName.cs (1)
139public virtual XmlSchemaSimpleType? MemberType
System\Xml\Schema\XmlSchemaInfo.cs (1)
66public XmlSchemaSimpleType? MemberType
System\Xml\XPath\XPathNavigatorReader.cs (1)
1133public XmlSchemaSimpleType? MemberType { get { return IsReading ? this.schemaInfo!.MemberType : null; } }
13 references to MemberType
System.Private.Xml (13)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
1047return _readerAsIXmlSchemaInfo.MemberType;
System\Xml\Dom\XmlName.cs (2)
207_memberType = schemaInfo.MemberType; 293&& (object?)schemaInfo.MemberType == (object?)_memberType
System\Xml\XPath\XPathNavigator.cs (9)
53XmlSchemaType? memberType = schemaInfo.MemberType; 81schemaType = schemaInfo.MemberType ?? schemaInfo.SchemaType; 147schemaType = schemaInfo.MemberType ?? schemaInfo.SchemaType; 185schemaType = schemaInfo.MemberType ?? schemaInfo.SchemaType; 219schemaType = schemaInfo.MemberType ?? schemaInfo.SchemaType; 253schemaType = schemaInfo.MemberType ?? schemaInfo.SchemaType; 287schemaType = schemaInfo.MemberType ?? schemaInfo.SchemaType; 321schemaType = schemaInfo.MemberType ?? schemaInfo.SchemaType; 354schemaType = schemaInfo.MemberType ?? schemaInfo.SchemaType;
System\Xml\XPath\XPathNavigatorReader.cs (1)
1133public XmlSchemaSimpleType? MemberType { get { return IsReading ? this.schemaInfo!.MemberType : null; } }