2 writes to MemberTypes
System.Private.Xml (2)
System\Xml\Schema\XmlSchemaSimpleTypeUnion.cs (1)
50
newUnion.
MemberTypes
= newQNames;
System\Xml\Schema\XsdBuilder.cs (1)
1511
builder._simpleTypeUnion!.
MemberTypes
= (XmlQualifiedName[])dt.ParseValue(value, builder._nameTable, builder._namespaceManager);
13 references to MemberTypes
System.Private.Xml (13)
System\Xml\Schema\Preprocessor.cs (3)
1612
if (union1.
MemberTypes
!= null)
1614
baseTypeCount += union1.
MemberTypes
.Length;
1615
XmlQualifiedName[] qNames = union1.
MemberTypes
;
System\Xml\Schema\SchemaCollectionCompiler.cs (1)
637
XmlQualifiedName[]? mainMemberTypes = mainUnion.
MemberTypes
;
System\Xml\Schema\SchemaCollectionpreProcessor.cs (4)
1279
if (union1.
MemberTypes
!= null)
1281
baseTypeCount += union1.
MemberTypes
.Length;
1282
for (int i = 0; i < union1.
MemberTypes
.Length; ++i)
1284
ValidateQNameAttribute(union1, "memberTypes", union1.
MemberTypes
[i]);
System\Xml\Schema\SchemaSetCompiler.cs (1)
727
XmlQualifiedName[]? mainMemberTypes = mainUnion.
MemberTypes
;
System\Xml\Serialization\ImportContext.cs (1)
332
XmlQualifiedName[]? memberTypes = ((XmlSchemaSimpleTypeUnion)item).
MemberTypes
;
System\Xml\Serialization\SchemaObjectWriter.cs (3)
593
if (o.
MemberTypes
!= null)
596
for (int i = 0; i < o.
MemberTypes
.Length; i++)
598
list.Add(o.
MemberTypes
[i]);