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