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