17 writes to SchemaType
dotnet-svcutil-lib (17)
FrameworkFork\Microsoft.Xml\Xml\schema\DatatypeImplementation.cs (3)
184
simpleType.ElementDecl.
SchemaType
= simpleType;
336
tempNormalizedStringTypeV1Compat.ElementDecl.
SchemaType
= tempNormalizedStringTypeV1Compat;
350
tempTokenTypeV1Compat.ElementDecl.
SchemaType
= tempTokenTypeV1Compat;
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (2)
776
attrDef.
SchemaType
= XmlSchemaType.GetBuiltInSimpleType(attrDef.Datatype.TypeCode);
856
attrDef.
SchemaType
= XmlSchemaType.GetBuiltInSimpleType(attrDef.Datatype.TypeCode);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (5)
614
decl.
SchemaType
= simpleType;
763
decl.
SchemaType
= complexType;
2119
decl.
SchemaType
= xa.SchemaType;
2129
decl.
SchemaType
= simpleType;
2138
decl.
SchemaType
= DatatypeImplementation.AnySimpleType;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (5)
699
decl.
SchemaType
= simpleType;
835
decl.
SchemaType
= complexType;
2529
decl.
SchemaType
= xa.SchemaType;
2539
decl.
SchemaType
= simpleType;
2548
decl.
SchemaType
= DatatypeImplementation.AnySimpleType;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (2)
58
s_untypedAnyType.ElementDecl.
SchemaType
= s_untypedAnyType;
80
localAnyType.ElementDecl.
SchemaType
= localAnyType;
25 references to SchemaType
dotnet-svcutil-lib (25)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (2)
9396
attr.schemaType = (attrDef.
SchemaType
== null) ? (object)attrDef.Datatype : (object)attrDef.
SchemaType
;
FrameworkFork\Microsoft.Xml\Xml\schema\dtdvalidator.cs (2)
162
Reader.SchemaTypeObject = context.ElementDecl.
SchemaType
;
189
Reader.SchemaTypeObject = attnDef.
SchemaType
;
FrameworkFork\Microsoft.Xml\Xml\schema\xdrvalidator.cs (4)
240
if (context.ElementDecl.
SchemaType
!= null)
242
reader.SchemaTypeObject = context.ElementDecl.
SchemaType
;
278
reader.SchemaTypeObject = (attnDef.
SchemaType
!= null) ? (object)attnDef.
SchemaType
: (object)attnDef.Datatype;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (12)
483
localSchemaType = elementDecl.
SchemaType
;
639
XmlSchemaComplexType ct = currentElementDecl.
SchemaType
as XmlSchemaComplexType;
949
schemaInfo.SchemaType = currentElementDecl.
SchemaType
;
1104
attSchemaInfo.SchemaType = attdef.
SchemaType
;
1268
XmlSchemaType xmlType = memberType == null ? contextElementDecl.
SchemaType
: memberType;
1271
localSchemaType = contextElementDecl.
SchemaType
;
1527
Debug.Assert(decl != null && decl.
SchemaType
!= null);
1528
string typeName = decl.
SchemaType
.QualifiedName.ToString();
1734
else if (elementDecl != null && !XmlSchemaType.IsDerivedFrom(elementDeclXsi.
SchemaType
, elementDecl.
SchemaType
, elementDecl.Block))
2155
xsiElement.SchemaType = currentDecl.
SchemaType
;
2156
xsiElement.SetElementType(currentDecl.
SchemaType
);
FrameworkFork\Microsoft.Xml\Xml\schema\xsdvalidator.cs (5)
421
else if (!XmlSchemaType.IsDerivedFrom(elementDeclXsi.
SchemaType
, elementDecl.
SchemaType
, elementDecl.Block))
459
reader.SchemaTypeObject = context.ElementDecl.
SchemaType
;
502
Debug.Assert(attnDef.
SchemaType
!= null);
503
reader.SchemaTypeObject = attnDef.
SchemaType
;