Base:
property
Items
System.Xml.Schema.XmlSchemaGroupBase.Items
42 references to Items
System.Data (1)
fx\src\data\System\Data\XMLSchema.cs (1)
751
return ((XmlSchemaAll)pt).
Items
;
System.Web.Services (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
3390
global::System.Xml.Schema.XmlSchemaObjectCollection a = (global::System.Xml.Schema.XmlSchemaObjectCollection)o.
@Items
;
9261
global::System.Xml.Schema.XmlSchemaObjectCollection a_6 = (global::System.Xml.Schema.XmlSchemaObjectCollection)o.
@Items
;
System.Xml (39)
System\Xml\Schema\Preprocessor.cs (1)
1582
items = ((XmlSchemaAll) particle).
Items
;
System\Xml\Schema\SchemaCollectionCompiler.cs (17)
945
if (all.
Items
.Count > 0) {
952
for (int i = 0; i < all.
Items
.Count; ++i) {
953
XmlSchemaParticle p = CannonicalizeParticle((XmlSchemaElement)all.
Items
[i], false, substitution);
955
newAll.
Items
.Add(p);
960
if (all.
Items
.Count == 0) {
963
else if (root && all.
Items
.Count == 1) {
967
newSequence.Items.Add((XmlSchemaParticle)all.
Items
[0]);
970
else if (!root && all.
Items
.Count == 1 && all.MinOccurs == decimal.One && all.MaxOccurs == decimal.One) {
971
return (XmlSchemaParticle)all.
Items
[0];
1202
if (!IsValidOccurrenceRangeRestriction(derivedSequence, baseAll) || derivedSequence.Items.Count > baseAll.
Items
.Count) {
1205
BitSet map = new BitSet(baseAll.
Items
.Count);
1207
int i = GetMappingParticle((XmlSchemaParticle)derivedSequence.Items[j], baseAll.
Items
);
1220
for (int i = 0; i < baseAll.
Items
.Count; i++) {
1221
if (!map[i] && !IsParticleEmptiable((XmlSchemaParticle)baseAll.
Items
[i])) {
1944
AllElementsContentValidator contentValidator = new AllElementsContentValidator(complexType.ContentType, all.
Items
.Count, all.MinOccurs == decimal.Zero);
1945
for (int i = 0; i < all.
Items
.Count; ++i) {
1946
XmlSchemaElement localElement = (XmlSchemaElement)all.
Items
[i];
System\Xml\Schema\SchemaCollectionpreProcessor.cs (2)
1270
for (int i = 0; i < schemaAll.
Items
.Count; ++i) {
1271
XmlSchemaElement element = (XmlSchemaElement)schemaAll.
Items
[i];
System\Xml\Schema\SchemaSetCompiler.cs (15)
1045
if (all.
Items
.Count > 0) {
1050
for (int i = 0; i < all.
Items
.Count; ++i) {
1051
XmlSchemaParticle p = CannonicalizeParticle((XmlSchemaElement)all.
Items
[i], false);
1053
newAll.
Items
.Add(p);
1058
if (all.
Items
.Count == 0) {
1172
XmlSchemaObjectCollection items = xsa.
Items
;
1437
virtualAll.
Items
.Add(derivedElement);
1489
if (!IsValidOccurrenceRangeRestriction(derivedSequence, baseAll) || derivedSequence.Items.Count > baseAll.
Items
.Count) {
1492
BitSet map = new BitSet(baseAll.
Items
.Count);
1494
int i = GetMappingParticle((XmlSchemaParticle)derivedSequence.Items[j], baseAll.
Items
);
1507
for (int i = 0; i < baseAll.
Items
.Count; i++) {
1508
if (!map[i] && !IsParticleEmptiable((XmlSchemaParticle)baseAll.
Items
[i])) {
2299
AllElementsContentValidator contentValidator = new AllElementsContentValidator(complexType.ContentType, all.
Items
.Count, all.MinOccurs == decimal.Zero);
2300
for (int i = 0; i < all.
Items
.Count; ++i) {
2301
XmlSchemaElement localElement = (XmlSchemaElement)all.
Items
[i];
System\Xml\Schema\XsdBuilder.cs (1)
1256
builder.all.
Items
.Add(builder.element);
System\Xml\Serialization\SchemaObjectWriter.cs (3)
90
if (a.
Items
.Count == 0)
92
return NameOf(a.
Items
);
803
WriteSortedItems(o.
@Items
);