Base:
property
Items
System.Xml.Schema.XmlSchemaGroupBase.Items
42 references to Items
System.Data.Common (1)
System\Data\XMLSchema.cs (1)
878
return ((XmlSchemaAll)pt).
Items
;
System.Private.Xml (41)
System\Xml\Schema\Preprocessor.cs (1)
1920
items = ((XmlSchemaAll)particle).
Items
;
System\Xml\Schema\SchemaCollectionCompiler.cs (19)
1186
if (all.
Items
.Count > 0)
1194
for (int i = 0; i < all.
Items
.Count; ++i)
1196
XmlSchemaParticle p = CanonicalizeParticle((XmlSchemaElement)all.
Items
[i], false, substitution);
1199
newAll.
Items
.Add(p);
1204
if (all.
Items
.Count == 0)
1208
else if (root && all.
Items
.Count == 1)
1213
newSequence.Items.Add((XmlSchemaParticle)all.
Items
[0]);
1216
else if (!root && all.
Items
.Count == 1 && all.MinOccurs == decimal.One && all.MaxOccurs == decimal.One)
1218
return (XmlSchemaParticle)all.
Items
[0];
1514
if (!IsValidOccurrenceRangeRestriction(derivedSequence, baseAll) || derivedSequence.Items.Count > baseAll.
Items
.Count)
1518
BitSet map = new BitSet(baseAll.
Items
.Count);
1521
int i = GetMappingParticle((XmlSchemaParticle)derivedSequence.Items[j], baseAll.
Items
);
1538
for (int i = 0; i < baseAll.
Items
.Count; i++)
1540
if (!map[i] && !IsParticleEmptiable((XmlSchemaParticle)baseAll.
Items
[i]))
2368
AllElementsContentValidator contentValidator = new AllElementsContentValidator(complexType.ContentType, all.
Items
.Count, all.MinOccurs == decimal.Zero);
2369
for (int i = 0; i < all.
Items
.Count; ++i)
2371
XmlSchemaElement localElement = (XmlSchemaElement)all.
Items
[i];
2446
for (int i = 0; i < all.
Items
.Count; ++i)
2448
XmlSchemaElement localElement = (XmlSchemaElement)all.
Items
[i];
System\Xml\Schema\SchemaCollectionpreProcessor.cs (2)
1588
for (int i = 0; i < schemaAll.
Items
.Count; ++i)
1590
XmlSchemaElement element = (XmlSchemaElement)schemaAll.
Items
[i];
System\Xml\Schema\SchemaSetCompiler.cs (15)
1332
if (all.
Items
.Count > 0)
1338
for (int i = 0; i < all.
Items
.Count; ++i)
1340
XmlSchemaParticle p = CanonicalizeParticle((XmlSchemaElement)all.
Items
[i], false);
1343
newAll.
Items
.Add(p);
1348
if (all.
Items
.Count == 0)
1498
XmlSchemaObjectCollection items = xsa.
Items
;
1816
virtualAll.
Items
.Add(derivedElement);
1880
if (!IsValidOccurrenceRangeRestriction(derivedSequence, baseAll) || derivedSequence.Items.Count > baseAll.
Items
.Count)
1884
BitSet map = new BitSet(baseAll.
Items
.Count);
1887
int i = GetMappingParticle((XmlSchemaParticle)derivedSequence.Items[j], baseAll.
Items
);
1904
for (int i = 0; i < baseAll.
Items
.Count; i++)
1906
if (!map[i] && !IsParticleEmptiable((XmlSchemaParticle)baseAll.
Items
[i]))
2837
AllElementsContentValidator contentValidator = new AllElementsContentValidator(complexType.ContentType, all.
Items
.Count, all.MinOccurs == decimal.Zero);
2838
for (int i = 0; i < all.
Items
.Count; ++i)
2840
XmlSchemaElement localElement = (XmlSchemaElement)all.
Items
[i];
System\Xml\Schema\XsdBuilder.cs (1)
1324
builder._all!.
Items
.Add(builder._element);
System\Xml\Serialization\SchemaObjectWriter.cs (3)
106
if (a.
Items
.Count == 0)
108
return NameOf(a.
Items
);
964
WriteSortedItems(o.
@Items
);