4 writes to ItemTypeName
System.Private.Xml (3)
System\Xml\Schema\XmlSchemaSimpleTypeList.cs (1)
39newList.ItemTypeName = _itemTypeName.Clone();
System\Xml\Schema\XsdBuilder.cs (1)
1542builder._simpleTypeList!.ItemTypeName = builder.ParseQName(value, "itemType");
System\Xml\Serialization\XmlSchemaExporter.cs (1)
774list.ItemTypeName = ExportPrimitiveMapping(pm, accessor.Namespace ?? ns);
System.Web.Services.Description (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
10591o.@ItemTypeName = ToXmlQualifiedName(Reader.Value);
24 references to ItemTypeName
System.Private.Xml (23)
System\Xml\Schema\Preprocessor.cs (3)
1585if (!list.ItemTypeName.IsEmpty) 1594if (list.ItemTypeName.IsEmpty) 1600ValidateQNameAttribute(list, "itemType", list.ItemTypeName);
System\Xml\Schema\SchemaCollectionCompiler.cs (3)
536if (list.ItemTypeName.IsEmpty) 544XmlSchemaSimpleType? type = GetSimpleType(list.ItemTypeName); 556throw new XmlSchemaException(SR.Sch_UndeclaredSimpleType, list.ItemTypeName.ToString(), simpleType);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (3)
1252if (!list.ItemTypeName.IsEmpty) 1261if (list.ItemTypeName.IsEmpty) 1267ValidateQNameAttribute(list, "itemType", list.ItemTypeName);
System\Xml\Schema\SchemaSetCompiler.cs (3)
620if (list.ItemTypeName.IsEmpty) 628XmlSchemaSimpleType? type = GetSimpleType(list.ItemTypeName); 641throw new XmlSchemaException(SR.Sch_UndeclaredSimpleType, list.ItemTypeName.ToString(), list);
System\Xml\Serialization\ImportContext.cs (3)
321if (list.ItemTypeName != null && !list.ItemTypeName.IsEmpty) 322baseName = list.ItemTypeName;
System\Xml\Serialization\SchemaObjectWriter.cs (2)
624if (!o.@ItemTypeName.IsEmpty) 626WriteAttribute(@"itemType", @"", o.@ItemTypeName);
System\Xml\Serialization\XmlSchemaImporter.cs (6)
1670else if (list.ItemTypeName != null && !list.ItemTypeName.IsEmpty) 1672mapping = ImportType(list.ItemTypeName, typeof(TypeMapping), null, TypeFlags.CanBeAttributeValue, true); 1842if (list.ItemTypeName != null && !list.ItemTypeName.IsEmpty) 1843return list.ItemTypeName;
System.Web.Services.Description (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
2967WriteAttribute(@"itemType", @"", FromXmlQualifiedName(((global::System.Xml.XmlQualifiedName)o.@ItemTypeName)));