4 writes to ItemTypeName
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleTypeList.cs (1)
57newList.ItemTypeName = _itemTypeName.Clone();
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1548builder._simpleTypeList.ItemTypeName = builder.ParseQName(value, "itemType");
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
815list.ItemTypeName = ExportPrimitiveMapping(pm, accessor.Namespace == null ? ns : accessor.Namespace);
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
10656o.@ItemTypeName = ToXmlQualifiedName(Reader.Value);
24 references to ItemTypeName
dotnet-svcutil-lib (24)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (3)
1617if (!list.ItemTypeName.IsEmpty) 1626if (list.ItemTypeName.IsEmpty) 1632ValidateQNameAttribute(list, "itemType", list.ItemTypeName);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (3)
527if (list.ItemTypeName.IsEmpty) 535XmlSchemaSimpleType type = GetSimpleType(list.ItemTypeName); 547throw new XmlSchemaException(ResXml.Sch_UndeclaredSimpleType, list.ItemTypeName.ToString(), simpleType);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (3)
1262if (!list.ItemTypeName.IsEmpty) 1271if (list.ItemTypeName.IsEmpty) 1277ValidateQNameAttribute(list, "itemType", list.ItemTypeName);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (3)
608if (list.ItemTypeName.IsEmpty) 616XmlSchemaSimpleType type = GetSimpleType(list.ItemTypeName); 628throw new XmlSchemaException(ResXml.Sch_UndeclaredSimpleType, list.ItemTypeName.ToString(), list);
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (3)
404if (list.ItemTypeName != null && !list.ItemTypeName.IsEmpty) 405baseName = list.ItemTypeName;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (2)
625if (!o.@ItemTypeName.IsEmpty) 627WriteAttribute(@"itemType", @"", o.@ItemTypeName);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (6)
1812else if (list.ItemTypeName != null && !list.ItemTypeName.IsEmpty) 1814mapping = ImportType(list.ItemTypeName, typeof(TypeMapping), null, TypeFlags.CanBeAttributeValue, true); 1983if (list.ItemTypeName != null && !list.ItemTypeName.IsEmpty) 1984return list.ItemTypeName;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
3209WriteAttribute(@"itemType", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@ItemTypeName)));