115 references to Items
System.Data (2)
fx\src\data\System\Data\DataSet.cs (1)
3638
foreach (XmlSchemaObject item in schema.
Items
) {
fx\src\data\System\Data\XMLSchema.cs (1)
168
foreach(object item in schema.
Items
) {
System.Runtime.Serialization (18)
System\Runtime\Serialization\SchemaExporter.cs (12)
121
schema.
Items
.Add(topLevelElement);
129
schema.
Items
.Add(type);
364
schema.
Items
.Add(type);
426
schema.
Items
.Add(type);
463
schema.
Items
.Add(type);
556
XmlSchemaObject[] itemArray = new XmlSchemaObject[schema.
Items
.Count];
557
schema.
Items
.CopyTo(itemArray, 0);
588
schema.
Items
.Remove(item);
673
foreach (XmlSchemaObject schemaItem in schema.
Items
)
719
schema.
Items
.Add(defaultXmlType);
786
schema.
Items
.Add(type);
800
schema.
Items
.Add(type);
System\Runtime\Serialization\SchemaHelper.cs (4)
51
foreach (XmlSchemaObject schemaObj in schema.
Items
)
104
foreach (XmlSchemaObject schemaObj in schema.
Items
)
191
foreach (XmlSchemaObject schemaObject in schema.
Items
)
215
foreach (XmlSchemaObject schemaObject in schema.
Items
)
System\Runtime\Serialization\SchemaImporter.cs (2)
147
xsdSchema.
Items
.Add(element);
613
foreach (XmlSchemaObject schemaObject in serializationSchema.
Items
)
System.ServiceModel (10)
System\ServiceModel\Description\MessageContractImporter.cs (1)
868
if (xsd.
Items
.Count > 0)
System\ServiceModel\Description\SchemaHelper.cs (2)
31
schema.
Items
.Add(element);
68
schema.
Items
.Add(type);
System\ServiceModel\Dispatcher\XPathMessageFilter.cs (3)
135
((XmlSchema)en.Current).
Items
.Add(outerType);
140
schema.
Items
.Add(outerType);
347
schema.
Items
.Add(outerType);
System\ServiceModel\EndpointAddress10.cs (2)
103
foreach (XmlSchemaObject schemaObject in eprSchema.
Items
)
104
schemaToAdd.
Items
.Add(schemaObject);
System\ServiceModel\EndpointAddressAugust2004.cs (2)
102
foreach (XmlSchemaObject schemaObject in eprSchema.
Items
)
103
schemaToAdd.
Items
.Add(schemaObject);
System.ServiceModel.Discovery (11)
System\ServiceModel\Discovery\SchemaUtility.cs (11)
263
schema.
Items
.Add(appSequenceType);
280
schema.
Items
.Add(metadataVersionElement);
315
schema.
Items
.Add(resolveType);
375
schema.
Items
.Add(probeMatchType);
418
schema.
Items
.Add(probeType);
434
schema.
Items
.Add(qNameListType);
472
schema.
Items
.Add(scopesElement);
508
schema.
Items
.Add(scopesType);
518
schema.
Items
.Add(typesElement);
534
schema.
Items
.Add(uriListType);
544
schema.
Items
.Add(xAddrsElement);
System.Web.Extensions (3)
Compilation\WCFModel\SchemaMerger.cs (2)
119
schema.
Items
.Remove(item);
145
foreach (XmlSchemaObject item in schema.
Items
)
Script\Services\WebServiceTypeData.cs (1)
210
foreach (XmlSchemaObject schemaObj in schema.
Items
) {
System.Web.Services (4)
System\Web\Services\Description\HttpProtocolReflector.cs (1)
103
schema.
Items
.Add(type);
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
1862
global::System.Xml.Schema.XmlSchemaObjectCollection a = (global::System.Xml.Schema.XmlSchemaObjectCollection)o.
@Items
;
6822
global::System.Xml.Schema.XmlSchemaObjectCollection a_8 = (global::System.Xml.Schema.XmlSchemaObjectCollection)o.
@Items
;
System\Web\Services\Description\WebServicesInteroperability.cs (1)
310
foreach (XmlSchemaObject o in schema.
Items
) {
System.Xml (67)
System\Xml\Schema\Inference\Infer.cs (5)
402
xsa = FindAttribute(xs.
Items
, localName);
409
xs.
Items
.Add(xsa);
547
xs.
Items
.Add(xse);
560
xs.
Items
.Add(xse); //add global element declaration only when creating new schema
1343
xse = FindElement(schema.
Items
, localName);
System\Xml\Schema\Preprocessor.cs (6)
376
tempSchema.
Items
.Add(lang);
381
tempSchema.
Items
.Add(xmlbase);
397
tempSchema.
Items
.Add(space);
410
tempSchema.
Items
.Add(attributeGroup);
636
XmlSchemaObjectCollection schemaItems = schema.
Items
;
684
schema.
Items
.Remove(removeItemsList[i]);
System\Xml\Schema\SchemaCollectionCompiler.cs (7)
121
for (int i = 0; i < schema.
Items
.Count; ++i) {
122
object item = schema.
Items
[i];
133
else if ((attrgroup = schema.
Items
[i] as XmlSchemaAttributeGroup) != null) {
136
else if ((complextype = schema.
Items
[i] as XmlSchemaComplexType) != null) {
139
else if ((simpletype = schema.
Items
[i] as XmlSchemaSimpleType) != null) {
142
else if ((element = schema.
Items
[i] as XmlSchemaElement) != null) {
145
else if ((group = schema.
Items
[i] as XmlSchemaGroup) != null) {
System\Xml\Schema\SchemaCollectionpreProcessor.cs (19)
439
for (int i = 0; i < schema.
Items
.Count; ++i) {
440
SetParent(schema.
Items
[i], schema);
441
XmlSchemaAttribute attribute = schema.
Items
[i] as XmlSchemaAttribute;
446
else if (schema.
Items
[i] is XmlSchemaAttributeGroup) {
447
XmlSchemaAttributeGroup attributeGroup = (XmlSchemaAttributeGroup)schema.
Items
[i];
451
else if (schema.
Items
[i] is XmlSchemaComplexType) {
452
XmlSchemaComplexType complexType = (XmlSchemaComplexType)schema.
Items
[i];
456
else if (schema.
Items
[i] is XmlSchemaSimpleType) {
457
XmlSchemaSimpleType simpleType = (XmlSchemaSimpleType)schema.
Items
[i];
461
else if (schema.
Items
[i] is XmlSchemaElement) {
462
XmlSchemaElement element = (XmlSchemaElement)schema.
Items
[i];
466
else if (schema.
Items
[i] is XmlSchemaGroup) {
467
XmlSchemaGroup group = (XmlSchemaGroup)schema.
Items
[i];
471
else if (schema.
Items
[i] is XmlSchemaNotation) {
472
XmlSchemaNotation notation = (XmlSchemaNotation)schema.
Items
[i];
476
else if(!(schema.
Items
[i] is XmlSchemaAnnotation)) {
477
SendValidationEvent(Res.Sch_InvalidCollection, schema.
Items
[i]);
478
removeItemsList.Add(schema.
Items
[i]);
482
schema.
Items
.Remove(removeItemsList[i]);
System\Xml\Schema\XmlSchema.cs (1)
570
that.
Items
.Add(newItem);
System\Xml\Schema\XsdBuilder.cs (7)
1194
builder.schema.
Items
.Add(builder.attribute);
1253
builder.schema.
Items
.Add(builder.element);
1335
builder.schema.
Items
.Add(builder.simpleType);
1481
builder.schema.
Items
.Add(builder.complexType);
1650
builder.schema.
Items
.Add(builder.attributeGroup);
1754
builder.schema.
Items
.Add(builder.group);
1872
builder.schema.
Items
.Add(builder.notation);
System\Xml\Serialization\ImportContext.cs (2)
243
items += s.
Items
.Count;
244
foreach (XmlSchemaObject item in s.
Items
) {
System\Xml\Serialization\SoapSchemaExporter.cs (3)
92
foreach (XmlSchemaObject o in schema.
Items
) {
113
schema.
Items
.Add(item);
134
return schema.
Items
.Contains(item);
System\Xml\Serialization\XmlSchemaExporter.cs (5)
148
XmlSchemaType schemaType = FindSchemaType(name, schema.
Items
);
190
XmlSchemaType schemaType = FindSchemaType(name, schema.
Items
);
251
foreach (XmlSchemaObject o in schema.
Items
) {
291
schema.
Items
.Add(item);
321
return schema.
Items
.Contains(item);
System\Xml\Serialization\XmlSchemaImporter.cs (2)
1016
for (int j = 0; j < schema.
Items
.Count; j++) {
1017
object item = schema.
Items
[j];
System\Xml\Serialization\XmlSchemas.cs (10)
350
foreach (XmlSchemaObject o in schema.
Items
) {
429
bool[] matchedItems = new bool[schema.
Items
.Count];
431
for (int i = 0; i < schema.
Items
.Count; i++) {
432
XmlSchemaObject o = schema.
Items
[i];
445
if (count != schema.
Items
.Count) {
447
for (int i = 0; i < schema.
Items
.Count; i++) {
449
destination.
Items
.Add(schema.
Items
[i]);
590
foreach(XmlSchemaObject item in s.
Items
) {
716
schema.
Items
.Add(element);