28 references to @Items
System.Data (1)
fx\src\data\System\Data\XMLSchema.cs (1)
738
foreach (object __items in ann.
Items
)
System.Runtime.Serialization (10)
System\Runtime\Serialization\SchemaExporter.cs (2)
811
annotation.
Items
.Add(appInfo);
831
annotation.
Items
.Add(appInfo);
System\Runtime\Serialization\SchemaImporter.cs (8)
1246
if (type.Annotation == null || type.Annotation.
Items
== null)
1248
foreach (XmlSchemaObject schemaObject in type.Annotation.
Items
)
1274
if (type.Annotation == null || type.Annotation.
Items
== null)
1276
foreach (XmlSchemaObject schemaObject in type.Annotation.
Items
)
1440
if (annotation != null && annotation.
Items
!= null && annotation.
Items
.Count > 0 && annotation.
Items
[0] is XmlSchemaAppInfo)
1442
XmlSchemaAppInfo appInfo = (XmlSchemaAppInfo)annotation.
Items
[0];
System.Web.Extensions (4)
Script\Services\WebServiceTypeData.cs (4)
275
if (annotation != null && annotation.
Items
!= null && annotation.
Items
.Count > 0 && annotation.
Items
[0] is XmlSchemaAppInfo) {
276
XmlSchemaAppInfo appInfo = (XmlSchemaAppInfo)annotation.
Items
[0];
System.Web.Services (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
1930
global::System.Xml.Schema.XmlSchemaObjectCollection a = (global::System.Xml.Schema.XmlSchemaObjectCollection)o.
@Items
;
7091
global::System.Xml.Schema.XmlSchemaObjectCollection a_2 = (global::System.Xml.Schema.XmlSchemaObjectCollection)o.
@Items
;
System.Xml (11)
System\Xml\Schema\Preprocessor.cs (2)
1783
for (int i = 0; i < annotation.
Items
.Count; ++i) {
1784
annotation.
Items
[i].Parent = annotation; //Can be documentation or appInfo
System\Xml\Schema\SchemaCollectionpreProcessor.cs (2)
1423
for (int i = 0; i < annotated.Annotation.
Items
.Count; ++i) {
1424
annotated.Annotation.
Items
[i].Parent = annotated.Annotation; //Can be documentation or appInfo
System\Xml\Schema\XsdBuilder.cs (2)
2082
builder.annotation.
Items
.Add(builder.appInfo);
2103
builder.annotation.
Items
.Add(builder.documentation);
System\Xml\Serialization\SchemaObjectWriter.cs (1)
410
System.Xml.Schema.XmlSchemaObjectCollection a = (System.Xml.Schema.XmlSchemaObjectCollection)o.
@Items
;
System\Xml\Serialization\XmlSchemaExporter.cs (1)
1052
annotation.
Items
.Add(appinfo);
System\Xml\Serialization\XmlSchemaImporter.cs (3)
1412
if (type.Annotation.
Items
== null || type.Annotation.
Items
.Count == 0)
1415
foreach(XmlSchemaObject o in type.Annotation.
Items
) {