21 references to @Items
dotnet-svcutil-lib (21)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (2)
2209
for (int i = 0; i < annotation.
Items
.Count; ++i)
2211
annotation.
Items
[i].Parent = annotation; //Can be documentation or appInfo
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (2)
1799
for (int i = 0; i < annotated.Annotation.
Items
.Count; ++i)
1801
annotated.Annotation.
Items
[i].Parent = annotated.Annotation; //Can be documentation or appInfo
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (2)
2274
builder._annotation.
Items
.Add(builder._appInfo);
2298
builder._annotation.
Items
.Add(builder._documentation);
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (1)
498
Microsoft.Xml.Schema.XmlSchemaObjectCollection a = (Microsoft.Xml.Schema.XmlSchemaObjectCollection)o.
@Items
;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
1238
annotation.
Items
.Add(appinfo);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (3)
1617
if (type.Annotation.
Items
== null || type.Annotation.
Items
.Count == 0)
1620
foreach (XmlSchemaObject o in type.Annotation.
Items
)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (8)
1240
if (type.Annotation == null || type.Annotation.
Items
== null)
1242
foreach (XmlSchemaObject schemaObject in type.Annotation.
Items
)
1268
if (type.Annotation == null || type.Annotation.
Items
== null)
1270
foreach (XmlSchemaObject schemaObject in type.Annotation.
Items
)
1435
if (annotation != null && annotation.
Items
!= null && annotation.
Items
.Count > 0 && annotation.
Items
[0] is XmlSchemaAppInfo)
1437
XmlSchemaAppInfo appInfo = (XmlSchemaAppInfo)annotation.
Items
[0];
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (2)
2464
Microsoft.Xml.Schema.XmlSchemaObjectCollection a = (Microsoft.Xml.Schema.XmlSchemaObjectCollection)o.
@Items
;
8824
Microsoft.Xml.Schema.XmlSchemaObjectCollection a_2 = (Microsoft.Xml.Schema.XmlSchemaObjectCollection)o.
@Items
;