3 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);
23 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)
323if (list.ItemTypeName != null && !list.ItemTypeName.IsEmpty) 324baseName = list.ItemTypeName;
System\Xml\Serialization\SchemaObjectWriter.cs (2)
624if (!o.@ItemTypeName.IsEmpty) 626WriteAttribute(@"itemType", @"", o.@ItemTypeName);
System\Xml\Serialization\XmlSchemaImporter.cs (6)
1708else if (list.ItemTypeName != null && !list.ItemTypeName.IsEmpty) 1710mapping = ImportType(list.ItemTypeName, typeof(TypeMapping), null, TypeFlags.CanBeAttributeValue, true); 1882if (list.ItemTypeName != null && !list.ItemTypeName.IsEmpty) 1883return list.ItemTypeName;