15 writes to SchemaTypeName
System.ServiceModel (2)
System\ServiceModel\Dispatcher\XPathMessageFilter.cs (2)
79dAttr.SchemaTypeName = new XmlQualifiedName("string", XmlSchema.Namespace); 107nqAttr.SchemaTypeName = new XmlQualifiedName("int", XmlSchema.Namespace);
System.ServiceModel.Discovery (4)
System\ServiceModel\Discovery\SchemaUtility.cs (4)
239instanceId.SchemaTypeName = discoveryVersion.Implementation.QualifiedNames.UnsignedIntType; 245sequenceId.SchemaTypeName = discoveryVersion.Implementation.QualifiedNames.AnyUriType; 250messageNumber.SchemaTypeName = discoveryVersion.Implementation.QualifiedNames.UnsignedIntType; 491matchBy.SchemaTypeName = discoveryVersion.Implementation.QualifiedNames.AnyUriType;
System.Web.Services (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
7390o.@SchemaTypeName = ToXmlQualifiedName(Reader.Value);
System.Xml (8)
System\Xml\Schema\Inference\Infer.cs (4)
407xsa.SchemaTypeName = RefineSimpleType(attrValue, ref AttributeType); 423xsa.SchemaTypeName = RefineSimpleType(attrValue, ref AttributeType); 437xsa.SchemaTypeName = RefineSimpleType(attrValue, ref AttributeType); 460xsa.SchemaTypeName = RefineSimpleType(attrValue, ref AttributeType);
System\Xml\Schema\Preprocessor.cs (2)
375lang.SchemaTypeName = new XmlQualifiedName("language", XmlReservedNs.NsXs); 380xmlbase.SchemaTypeName = new XmlQualifiedName("anyURI", XmlReservedNs.NsXs);
System\Xml\Schema\XsdBuilder.cs (1)
1225builder.attribute.SchemaTypeName = builder.ParseQName(value, "type");
System\Xml\Serialization\XmlSchemaExporter.cs (1)
706attribute.SchemaTypeName = ExportPrimitiveMapping(pm, accessor.Namespace == null ? ns : accessor.Namespace);
33 references to SchemaTypeName
System.Data (7)
fx\src\data\System\Data\XMLSchema.cs (7)
1673String _type = isAttr ? attr.SchemaTypeName.Name : el.SchemaTypeName.Name; 1674String _typeNs = isAttr ? attr.SchemaTypeName.Namespace : el.SchemaTypeName.Namespace; 1686typeNode = (XmlSchemaAnnotated)schemaTypes[isAttr ? ((XmlSchemaAttribute)node).SchemaTypeName : ((XmlSchemaElement)node).SchemaTypeName]; 1910strType = attr.SchemaTypeName.Name; 1916if (attr.SchemaTypeName.Namespace != Keywords.XSDNS) // it is UD Simple Type, can it be? 1918type = ParseDataType(attr.SchemaTypeName.ToString()); 1920type = ParseDataType(attr.SchemaTypeName.Name);
System.Web.Services (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
3266WriteAttribute(@"type", @"", FromXmlQualifiedName(((global::System.Xml.XmlQualifiedName)o.@SchemaTypeName)));
System.Xml (25)
System\Xml\Schema\Inference\Infer.cs (2)
420AttributeType = GetSchemaType(xsa.SchemaTypeName); 457AttributeType = GetSchemaType(xsa.SchemaTypeName);
System\Xml\Schema\Preprocessor.cs (4)
1008if (!attribute.SchemaTypeName.IsEmpty || 1042if (!attribute.SchemaTypeName.IsEmpty) { 1047if (!attribute.SchemaTypeName.IsEmpty) { 1048ValidateQNameAttribute(attribute, "type", attribute.SchemaTypeName);
System\Xml\Schema\SchemaCollectionCompiler.cs (3)
1681else if (!xa.SchemaTypeName.IsEmpty) { 1682XmlSchemaSimpleType simpleType = GetSimpleType(xa.SchemaTypeName); 1689throw new XmlSchemaException(Res.Sch_UndeclaredSimpleType, xa.SchemaTypeName.ToString(), xa);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (4)
700if (!attribute.SchemaTypeName.IsEmpty || 732if (!attribute.SchemaTypeName.IsEmpty) { 737if (!attribute.SchemaTypeName.IsEmpty) { 738ValidateQNameAttribute(attribute, "type", attribute.SchemaTypeName);
System\Xml\Schema\SchemaSetCompiler.cs (3)
2011else if (!xa.SchemaTypeName.IsEmpty) { 2012XmlSchemaSimpleType simpleType = GetSimpleType(xa.SchemaTypeName); 2019throw new XmlSchemaException(Res.Sch_UndeclaredSimpleType, xa.SchemaTypeName.ToString(), xa);
System\Xml\Schema\XmlSchemaComplexType.cs (2)
449if (!att.RefName.IsEmpty || !att.SchemaTypeName.IsEmpty) { 555if (!attribute.RefName.IsEmpty || !attribute.SchemaTypeName.IsEmpty) {
System\Xml\Serialization\ImportContext.cs (2)
425else if (!at.SchemaTypeName.IsEmpty) { 426XmlSchemaType type = (XmlSchemaType)schemas.Find(at.SchemaTypeName, typeof(XmlSchemaType), false);
System\Xml\Serialization\SchemaObjectWriter.cs (2)
268else if (!o.SchemaTypeName.IsEmpty) { 269WriteAttribute("type", "", o.SchemaTypeName);
System\Xml\Serialization\XmlSchemaImporter.cs (3)
1500if (!attribute.SchemaTypeName.IsEmpty) 1501mapping = (TypeMapping)ImportType(attribute.SchemaTypeName, typeof(TypeMapping), null, TypeFlags.CanBeAttributeValue, false); 1510RunSchemaExtensions(mapping, attribute.SchemaTypeName, attribute.SchemaType, attribute, TypeFlags.CanBeElementValue | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeTextValue);