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