9 writes to SchemaTypeName
dotnet-svcutil-lib (9)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (4)
409xsa.SchemaTypeName = RefineSimpleType(attrValue, ref AttributeType); 424xsa.SchemaTypeName = RefineSimpleType(attrValue, ref AttributeType); 439xsa.SchemaTypeName = RefineSimpleType(attrValue, ref AttributeType); 462xsa.SchemaTypeName = RefineSimpleType(attrValue, ref AttributeType);
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (2)
449lang.SchemaTypeName = new XmlQualifiedName("language", XmlReservedNs.NsXs); 454xmlbase.SchemaTypeName = new XmlQualifiedName("anyURI", XmlReservedNs.NsXs);
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1298builder._attribute.SchemaTypeName = builder.ParseQName(value, "type");
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
828attribute.SchemaTypeName = ExportPrimitiveMapping(pm, accessor.Namespace == null ? ns : accessor.Namespace);
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
9186o.@SchemaTypeName = ToXmlQualifiedName(Reader.Value);
26 references to SchemaTypeName
dotnet-svcutil-lib (26)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (2)
421AttributeType = GetSchemaType(xsa.SchemaTypeName); 459AttributeType = GetSchemaType(xsa.SchemaTypeName);
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (4)
1222if (!attribute.SchemaTypeName.IsEmpty || 1264if (!attribute.SchemaTypeName.IsEmpty) 1270if (!attribute.SchemaTypeName.IsEmpty) 1272ValidateQNameAttribute(attribute, "type", attribute.SchemaTypeName);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (3)
2122else if (!xa.SchemaTypeName.IsEmpty) 2124XmlSchemaSimpleType simpleType = GetSimpleType(xa.SchemaTypeName); 2133throw new XmlSchemaException(ResXml.Sch_UndeclaredSimpleType, xa.SchemaTypeName.ToString(), xa);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (4)
871if (!attribute.SchemaTypeName.IsEmpty || 911if (!attribute.SchemaTypeName.IsEmpty) 917if (!attribute.SchemaTypeName.IsEmpty) 919ValidateQNameAttribute(attribute, "type", attribute.SchemaTypeName);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (3)
2532else if (!xa.SchemaTypeName.IsEmpty) 2534XmlSchemaSimpleType simpleType = GetSimpleType(xa.SchemaTypeName); 2543throw new XmlSchemaException(ResXml.Sch_UndeclaredSimpleType, xa.SchemaTypeName.ToString(), xa);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (2)
520if (!att.RefName.IsEmpty || !att.SchemaTypeName.IsEmpty) 649if (!attribute.RefName.IsEmpty || !attribute.SchemaTypeName.IsEmpty)
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (2)
510else if (!at.SchemaTypeName.IsEmpty) 512XmlSchemaType type = (XmlSchemaType)_schemas.Find(at.SchemaTypeName, typeof(XmlSchemaType), false);
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (2)
323else if (!o.SchemaTypeName.IsEmpty) 325WriteAttribute("type", "", o.SchemaTypeName);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (3)
1718if (!attribute.SchemaTypeName.IsEmpty) 1719mapping = (TypeMapping)ImportType(attribute.SchemaTypeName, typeof(TypeMapping), null, TypeFlags.CanBeAttributeValue, false); 1730RunSchemaExtensions(mapping, attribute.SchemaTypeName, attribute.SchemaType, attribute, TypeFlags.CanBeElementValue | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeTextValue);
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
4126WriteAttribute(@"type", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@SchemaTypeName)));