26 references to Items
System.Data.Common (1)
System\Data\XMLSchema.cs (1)
863
foreach (object __items in ann.
Items
)
System.Private.DataContractSerialization (10)
System\Runtime\Serialization\SchemaExporter.cs (2)
809
annotation.
Items
.Add(appInfo);
829
annotation.
Items
.Add(appInfo);
System\Runtime\Serialization\SchemaImporter.cs (8)
1242
if (type.Annotation == null || type.Annotation.
Items
== null)
1244
foreach (XmlSchemaObject schemaObject in type.Annotation.
Items
)
1264
if (type.Annotation == null || type.Annotation.
Items
== null)
1266
foreach (XmlSchemaObject schemaObject in type.Annotation.
Items
)
1428
if (annotation != null && annotation.
Items
!= null && annotation.
Items
.Count > 0 && annotation.
Items
[0] is XmlSchemaAppInfo)
1430
XmlSchemaAppInfo appInfo = (XmlSchemaAppInfo)annotation.
Items
[0];
System.Private.Xml (11)
System\Xml\Schema\Preprocessor.cs (2)
2177
for (int i = 0; i < annotation.
Items
.Count; ++i)
2179
annotation.
Items
[i].Parent = annotation; //Can be documentation or appInfo
System\Xml\Schema\SchemaCollectionpreProcessor.cs (2)
1786
for (int i = 0; i < annotated.Annotation.
Items
.Count; ++i)
1788
annotated.Annotation.
Items
[i].Parent = annotated.Annotation; //Can be documentation or appInfo
System\Xml\Schema\XsdBuilder.cs (2)
2269
builder._annotation!.
Items
.Add(builder._appInfo);
2293
builder._annotation!.
Items
.Add(builder._documentation);
System\Xml\Serialization\SchemaObjectWriter.cs (1)
497
System.Xml.Schema.XmlSchemaObjectCollection a = (System.Xml.Schema.XmlSchemaObjectCollection)o.
@Items
;
System\Xml\Serialization\XmlSchemaExporter.cs (1)
1195
annotation.
Items
.Add(appinfo);
System\Xml\Serialization\XmlSchemaImporter.cs (3)
1513
if (type.Annotation.
Items
== null || type.Annotation.
Items
.Count == 0)
1516
foreach (XmlSchemaObject o in type.Annotation.
Items
)
System.Runtime.Serialization.Schema (4)
System\Runtime\Serialization\Schema\XsdDataContractImporter.cs (4)
381
if (annotation != null && annotation.
Items
!= null && annotation.
Items
.Count > 0 && annotation.
Items
[0] is XmlSchemaAppInfo)
383
XmlSchemaAppInfo appInfo = (XmlSchemaAppInfo)annotation.
Items
[0];