269 references to XmlSchemaDerivationMethod
netstandard (1)
netstandard.cs (1)
2321
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Schema.
XmlSchemaDerivationMethod
))]
System.Private.Xml (266)
System\Xml\Schema\DataTypeImplementation.cs (2)
192
derivedType.SetDerivedBy(
XmlSchemaDerivationMethod
.Restriction);
204
derivedType.SetDerivedBy(
XmlSchemaDerivationMethod
.List);
System\Xml\Schema\Preprocessor.cs (62)
45
private
XmlSchemaDerivationMethod
_blockDefault;
46
private
XmlSchemaDerivationMethod
_finalDefault;
65
private const
XmlSchemaDerivationMethod
schemaBlockDefaultAllowed =
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.Extension |
XmlSchemaDerivationMethod
.Substitution;
66
private const
XmlSchemaDerivationMethod
schemaFinalDefaultAllowed =
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.Extension |
XmlSchemaDerivationMethod
.List |
XmlSchemaDerivationMethod
.Union;
67
private const
XmlSchemaDerivationMethod
elementBlockAllowed =
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.Extension |
XmlSchemaDerivationMethod
.Substitution;
68
private const
XmlSchemaDerivationMethod
elementFinalAllowed =
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.Extension;
69
private const
XmlSchemaDerivationMethod
simpleTypeFinalAllowed =
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.Extension |
XmlSchemaDerivationMethod
.List |
XmlSchemaDerivationMethod
.Union;
70
private const
XmlSchemaDerivationMethod
complexTypeBlockAllowed =
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.Extension;
71
private const
XmlSchemaDerivationMethod
complexTypeFinalAllowed =
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.Extension;
989
if (schema.BlockDefault ==
XmlSchemaDerivationMethod
.All)
991
_blockDefault =
XmlSchemaDerivationMethod
.All;
993
else if (schema.BlockDefault ==
XmlSchemaDerivationMethod
.None)
995
_blockDefault =
XmlSchemaDerivationMethod
.Empty;
1005
if (schema.FinalDefault ==
XmlSchemaDerivationMethod
.All)
1007
_finalDefault =
XmlSchemaDerivationMethod
.All;
1009
else if (schema.FinalDefault ==
XmlSchemaDerivationMethod
.None)
1011
_finalDefault =
XmlSchemaDerivationMethod
.Empty;
1272
if (element.Final ==
XmlSchemaDerivationMethod
.All)
1274
element.SetFinalResolved(
XmlSchemaDerivationMethod
.All);
1276
else if (element.Final ==
XmlSchemaDerivationMethod
.None)
1278
if (_finalDefault ==
XmlSchemaDerivationMethod
.All)
1280
element.SetFinalResolved(
XmlSchemaDerivationMethod
.All);
1335
element.Block !=
XmlSchemaDerivationMethod
.None ||
1360
if (element.Final !=
XmlSchemaDerivationMethod
.None)
1378
if (element.Block ==
XmlSchemaDerivationMethod
.All)
1380
element.SetBlockResolved(
XmlSchemaDerivationMethod
.All);
1382
else if (element.Block ==
XmlSchemaDerivationMethod
.None)
1384
if (_blockDefault ==
XmlSchemaDerivationMethod
.All)
1386
element.SetBlockResolved(
XmlSchemaDerivationMethod
.All);
1519
if (simpleType.Final ==
XmlSchemaDerivationMethod
.All)
1521
simpleType.SetFinalResolved(
XmlSchemaDerivationMethod
.All);
1523
else if (simpleType.Final ==
XmlSchemaDerivationMethod
.None)
1525
if (_finalDefault ==
XmlSchemaDerivationMethod
.All)
1527
simpleType.SetFinalResolved(
XmlSchemaDerivationMethod
.All);
1657
if (complexType.Block ==
XmlSchemaDerivationMethod
.All)
1659
complexType.SetBlockResolved(
XmlSchemaDerivationMethod
.All);
1661
else if (complexType.Block ==
XmlSchemaDerivationMethod
.None)
1673
if (complexType.Final ==
XmlSchemaDerivationMethod
.All)
1675
complexType.SetFinalResolved(
XmlSchemaDerivationMethod
.All);
1677
else if (complexType.Final ==
XmlSchemaDerivationMethod
.None)
1679
if (_finalDefault ==
XmlSchemaDerivationMethod
.All)
1681
complexType.SetFinalResolved(
XmlSchemaDerivationMethod
.All);
System\Xml\Schema\SchemaCollectionCompiler.cs (30)
450
if (examplar.FinalResolved ==
XmlSchemaDerivationMethod
.All)
547
if ((type.FinalResolved &
XmlSchemaDerivationMethod
.List) != 0)
560
simpleType.SetDerivedBy(
XmlSchemaDerivationMethod
.List);
586
if ((type.FinalResolved &
XmlSchemaDerivationMethod
.Restriction) != 0)
600
simpleType.SetDerivedBy(
XmlSchemaDerivationMethod
.Restriction);
607
simpleType.SetDerivedBy(
XmlSchemaDerivationMethod
.Union);
654
if ((unionMember.FinalResolved &
XmlSchemaDerivationMethod
.Union) != 0)
693
if (unionMember.DerivedBy ==
XmlSchemaDerivationMethod
.Restriction && (unionDatatype.HasLexicalFacets || unionDatatype.HasValueFacets))
746
CompileLocalAttributes(XmlSchemaComplexType.AnyType, complexType, complexType.Attributes, complexType.AnyAttribute,
XmlSchemaDerivationMethod
.Restriction);
747
complexType.SetDerivedBy(
XmlSchemaDerivationMethod
.Restriction);
827
if ((baseType.FinalResolved &
XmlSchemaDerivationMethod
.Extension) != 0)
836
complexType.SetDerivedBy(
XmlSchemaDerivationMethod
.Extension);
837
CompileLocalAttributes(baseType, complexType, simpleExtension.Attributes, simpleExtension.AnyAttribute,
XmlSchemaDerivationMethod
.Extension);
896
if ((baseType.FinalResolved &
XmlSchemaDerivationMethod
.Restriction) != 0)
921
complexType.SetDerivedBy(
XmlSchemaDerivationMethod
.Restriction);
922
CompileLocalAttributes(baseType, complexType, simpleRestriction.Attributes, simpleRestriction.AnyAttribute,
XmlSchemaDerivationMethod
.Restriction);
951
if ((baseType!.FinalResolved &
XmlSchemaDerivationMethod
.Extension) != 0)
955
CompileLocalAttributes(baseType, complexType, complexExtension.Attributes, complexExtension.AnyAttribute,
XmlSchemaDerivationMethod
.Extension);
988
complexType.SetDerivedBy(
XmlSchemaDerivationMethod
.Extension);
1017
if ((baseType!.FinalResolved &
XmlSchemaDerivationMethod
.Restriction) != 0)
1022
CompileLocalAttributes(baseType, complexType, complexRestriction.Attributes, complexRestriction.AnyAttribute,
XmlSchemaDerivationMethod
.Restriction);
1038
complexType.SetDerivedBy(
XmlSchemaDerivationMethod
.Restriction);
1044
if (baseType != null && baseType != XmlSchemaComplexType.AnyType && complexType.DerivedBy ==
XmlSchemaDerivationMethod
.Restriction)
1102
if (!element.RefName.IsEmpty && substitution && (element.BlockResolved &
XmlSchemaDerivationMethod
.Substitution) == 0)
1417
XmlSchemaType.IsDerivedFrom(derivedElement.ElementSchemaType, baseElement.ElementSchemaType, ~
XmlSchemaDerivationMethod
.Restriction);
1784
private void CompileLocalAttributes(XmlSchemaComplexType? baseType, XmlSchemaComplexType derivedType, XmlSchemaObjectCollection attributes, XmlSchemaAnyAttribute? anyAttribute,
XmlSchemaDerivationMethod
derivedBy)
1797
(attribute.Use == XmlSchemaUse.Prohibited && derivedBy ==
XmlSchemaDerivationMethod
.Restriction && baseType != XmlSchemaComplexType.AnyType))
1823
(attributeValue.Use == XmlSchemaUse.Prohibited && derivedBy ==
XmlSchemaDerivationMethod
.Restriction && baseType != XmlSchemaComplexType.AnyType))
1851
if (derivedBy ==
XmlSchemaDerivationMethod
.Extension)
1901
else if (attributeBase.AttributeSchemaType == null || attribute.AttributeSchemaType == null || !XmlSchemaType.IsDerivedFrom(attribute.AttributeSchemaType, attributeBase.AttributeSchemaType,
XmlSchemaDerivationMethod
.Empty))
System\Xml\Schema\SchemaCollectionpreProcessor.cs (61)
27
private
XmlSchemaDerivationMethod
_blockDefault;
28
private
XmlSchemaDerivationMethod
_finalDefault;
34
private const
XmlSchemaDerivationMethod
schemaBlockDefaultAllowed =
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.Extension |
XmlSchemaDerivationMethod
.Substitution;
35
private const
XmlSchemaDerivationMethod
schemaFinalDefaultAllowed =
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.Extension |
XmlSchemaDerivationMethod
.List |
XmlSchemaDerivationMethod
.Union;
36
private const
XmlSchemaDerivationMethod
elementBlockAllowed =
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.Extension |
XmlSchemaDerivationMethod
.Substitution;
37
private const
XmlSchemaDerivationMethod
elementFinalAllowed =
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.Extension;
38
private const
XmlSchemaDerivationMethod
simpleTypeFinalAllowed =
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.List |
XmlSchemaDerivationMethod
.Union;
39
private const
XmlSchemaDerivationMethod
complexTypeBlockAllowed =
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.Extension;
40
private const
XmlSchemaDerivationMethod
complexTypeFinalAllowed =
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.Extension;
434
if (schema.BlockDefault ==
XmlSchemaDerivationMethod
.All)
436
_blockDefault =
XmlSchemaDerivationMethod
.All;
438
else if (schema.BlockDefault ==
XmlSchemaDerivationMethod
.None)
440
_blockDefault =
XmlSchemaDerivationMethod
.Empty;
450
if (schema.FinalDefault ==
XmlSchemaDerivationMethod
.All)
452
_finalDefault =
XmlSchemaDerivationMethod
.All;
454
else if (schema.FinalDefault ==
XmlSchemaDerivationMethod
.None)
456
_finalDefault =
XmlSchemaDerivationMethod
.Empty;
945
if (element.Final ==
XmlSchemaDerivationMethod
.All)
947
element.SetFinalResolved(
XmlSchemaDerivationMethod
.All);
949
else if (element.Final ==
XmlSchemaDerivationMethod
.None)
951
if (_finalDefault ==
XmlSchemaDerivationMethod
.All)
953
element.SetFinalResolved(
XmlSchemaDerivationMethod
.All);
1008
element.Block !=
XmlSchemaDerivationMethod
.None ||
1033
if (element.Final !=
XmlSchemaDerivationMethod
.None)
1051
if (element.Block ==
XmlSchemaDerivationMethod
.All)
1053
element.SetBlockResolved(
XmlSchemaDerivationMethod
.All);
1055
else if (element.Block ==
XmlSchemaDerivationMethod
.None)
1057
if (_blockDefault ==
XmlSchemaDerivationMethod
.All)
1059
element.SetBlockResolved(
XmlSchemaDerivationMethod
.All);
1186
if (simpleType.Final ==
XmlSchemaDerivationMethod
.All)
1188
simpleType.SetFinalResolved(
XmlSchemaDerivationMethod
.All);
1190
else if (simpleType.Final ==
XmlSchemaDerivationMethod
.None)
1192
if (_finalDefault ==
XmlSchemaDerivationMethod
.All)
1194
simpleType.SetFinalResolved(
XmlSchemaDerivationMethod
.All);
1322
if (complexType.Block ==
XmlSchemaDerivationMethod
.All)
1324
complexType.SetBlockResolved(
XmlSchemaDerivationMethod
.All);
1326
else if (complexType.Block ==
XmlSchemaDerivationMethod
.None)
1338
if (complexType.Final ==
XmlSchemaDerivationMethod
.All)
1340
complexType.SetFinalResolved(
XmlSchemaDerivationMethod
.All);
1342
else if (complexType.Final ==
XmlSchemaDerivationMethod
.None)
1344
if (_finalDefault ==
XmlSchemaDerivationMethod
.All)
1346
complexType.SetFinalResolved(
XmlSchemaDerivationMethod
.All);
System\Xml\Schema\SchemaElementDecl.cs (2)
25
private
XmlSchemaDerivationMethod
_block;
140
internal
XmlSchemaDerivationMethod
Block
System\Xml\Schema\SchemaSetCompiler.cs (44)
508
if (examplar.FinalResolved ==
XmlSchemaDerivationMethod
.All)
519
if ((element.ElementDecl!.Block &
XmlSchemaDerivationMethod
.Substitution) == 0)
631
if ((type.FinalResolved &
XmlSchemaDerivationMethod
.List) != 0)
646
simpleType.SetDerivedBy(
XmlSchemaDerivationMethod
.List);
676
if ((type.FinalResolved &
XmlSchemaDerivationMethod
.Restriction) != 0)
689
simpleType.SetDerivedBy(
XmlSchemaDerivationMethod
.Restriction);
696
simpleType.SetDerivedBy(
XmlSchemaDerivationMethod
.Union);
744
if ((unionMember.FinalResolved &
XmlSchemaDerivationMethod
.Union) != 0)
782
if (unionMember.DerivedBy ==
XmlSchemaDerivationMethod
.Restriction && (unionDatatype.HasLexicalFacets || unionDatatype.HasValueFacets))
837
CompileLocalAttributes(XmlSchemaComplexType.AnyType, complexType, complexType.Attributes, complexType.AnyAttribute,
XmlSchemaDerivationMethod
.Restriction);
838
complexType.SetDerivedBy(
XmlSchemaDerivationMethod
.Restriction);
906
if ((baseType.FinalResolved &
XmlSchemaDerivationMethod
.Extension) != 0)
916
complexType.SetDerivedBy(
XmlSchemaDerivationMethod
.Extension);
917
CompileLocalAttributes(baseType, complexType, simpleExtension.Attributes, simpleExtension.AnyAttribute,
XmlSchemaDerivationMethod
.Extension);
977
if ((baseType.FinalResolved &
XmlSchemaDerivationMethod
.Restriction) != 0)
1004
complexType.SetDerivedBy(
XmlSchemaDerivationMethod
.Restriction);
1005
CompileLocalAttributes(baseType, complexType, simpleRestriction.Attributes, simpleRestriction.AnyAttribute,
XmlSchemaDerivationMethod
.Restriction);
1026
if ((baseType.FinalResolved &
XmlSchemaDerivationMethod
.Extension) != 0)
1031
CompileLocalAttributes(baseType, complexType, complexExtension.Attributes, complexExtension.AnyAttribute,
XmlSchemaDerivationMethod
.Extension);
1076
complexType.SetDerivedBy(
XmlSchemaDerivationMethod
.Extension);
1097
if ((baseType.FinalResolved &
XmlSchemaDerivationMethod
.Restriction) != 0)
1101
CompileLocalAttributes(baseType, complexType, complexRestriction.Attributes, complexRestriction.AnyAttribute,
XmlSchemaDerivationMethod
.Restriction);
1122
complexType.SetDerivedBy(
XmlSchemaDerivationMethod
.Restriction);
1129
if (baseType != null && baseType != XmlSchemaComplexType.AnyType && complexType.DerivedBy ==
XmlSchemaDerivationMethod
.Restriction)
1233
if (!element.RefName.IsEmpty && (element.ElementDecl!.Block &
XmlSchemaDerivationMethod
.Substitution) == 0)
1658
XmlSchemaDerivationMethod
baseEffectiveBlock =
1659
baseElement.ElementDecl!.Block ==
XmlSchemaDerivationMethod
.All ?
1660
XmlSchemaDerivationMethod
.Substitution |
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.Extension :
1662
XmlSchemaDerivationMethod
derivedEffectiveBlock =
1663
derivedElement.ElementDecl!.Block ==
XmlSchemaDerivationMethod
.All ?
1664
XmlSchemaDerivationMethod
.Substitution |
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.Extension :
1673
XmlSchemaType.IsDerivedFrom(derivedElement.ElementSchemaType, baseElement.ElementSchemaType, ~(
XmlSchemaDerivationMethod
.Restriction |
XmlSchemaDerivationMethod
.List |
XmlSchemaDerivationMethod
.Union))))
2144
private void CompileLocalAttributes(XmlSchemaComplexType? baseType, XmlSchemaComplexType derivedType, XmlSchemaObjectCollection attributes, XmlSchemaAnyAttribute? anyAttribute,
XmlSchemaDerivationMethod
derivedBy)
2157
(attr.Use == XmlSchemaUse.Prohibited && derivedBy ==
XmlSchemaDerivationMethod
.Restriction && baseType != XmlSchemaComplexType.AnyType))
2183
(attribute.Use == XmlSchemaUse.Prohibited && derivedBy ==
XmlSchemaDerivationMethod
.Restriction && baseType != XmlSchemaComplexType.AnyType))
2212
if (derivedBy ==
XmlSchemaDerivationMethod
.Extension)
2266
else if (attributeBase.AttributeSchemaType == null || attribute.AttributeSchemaType == null || !XmlSchemaType.IsDerivedFrom(attribute.AttributeSchemaType, attributeBase.AttributeSchemaType,
XmlSchemaDerivationMethod
.Empty))
2326
else if (attributeBase.AttributeSchemaType == null || attribute.AttributeSchemaType == null || !XmlSchemaType.IsDerivedFrom(attribute.AttributeSchemaType, attributeBase.AttributeSchemaType,
XmlSchemaDerivationMethod
.Empty))
System\Xml\Schema\XmlSchema.cs (8)
23
private
XmlSchemaDerivationMethod
_blockDefault =
XmlSchemaDerivationMethod
.None;
24
private
XmlSchemaDerivationMethod
_finalDefault =
XmlSchemaDerivationMethod
.None;
245
[XmlAttribute("blockDefault"), DefaultValue(
XmlSchemaDerivationMethod
.None)]
246
public
XmlSchemaDerivationMethod
BlockDefault
252
[XmlAttribute("finalDefault"), DefaultValue(
XmlSchemaDerivationMethod
.None)]
253
public
XmlSchemaDerivationMethod
FinalDefault
System\Xml\Schema\XmlSchemaComplexType.cs (8)
16
private
XmlSchemaDerivationMethod
_block =
XmlSchemaDerivationMethod
.None;
24
private
XmlSchemaDerivationMethod
_blockResolved;
143
[XmlAttribute("block"), DefaultValue(
XmlSchemaDerivationMethod
.None)]
144
public
XmlSchemaDerivationMethod
Block
215
public
XmlSchemaDerivationMethod
BlockResolved
239
internal void SetBlockResolved(
XmlSchemaDerivationMethod
value)
406
_blockResolved =
XmlSchemaDerivationMethod
.None;
System\Xml\Schema\XmlSchemaElement.cs (14)
19
private
XmlSchemaDerivationMethod
_block =
XmlSchemaDerivationMethod
.None;
20
private
XmlSchemaDerivationMethod
_final =
XmlSchemaDerivationMethod
.None;
33
private
XmlSchemaDerivationMethod
_blockResolved;
34
private
XmlSchemaDerivationMethod
_finalResolved;
50
[XmlAttribute("block"), DefaultValue(
XmlSchemaDerivationMethod
.None)]
51
public
XmlSchemaDerivationMethod
Block
65
[XmlAttribute("final"), DefaultValue(
XmlSchemaDerivationMethod
.None)]
66
public
XmlSchemaDerivationMethod
Final
181
public
XmlSchemaDerivationMethod
BlockResolved
187
public
XmlSchemaDerivationMethod
FinalResolved
216
internal void SetBlockResolved(
XmlSchemaDerivationMethod
value)
221
internal void SetFinalResolved(
XmlSchemaDerivationMethod
value)
System\Xml\Schema\XmlSchemaType.cs (11)
17
private
XmlSchemaDerivationMethod
_final =
XmlSchemaDerivationMethod
.None;
18
private
XmlSchemaDerivationMethod
_derivedBy;
21
private
XmlSchemaDerivationMethod
_finalResolved;
93
[XmlAttribute("final"), DefaultValue(
XmlSchemaDerivationMethod
.None)]
94
public
XmlSchemaDerivationMethod
Final
113
public
XmlSchemaDerivationMethod
FinalResolved
152
public
XmlSchemaDerivationMethod
DerivedBy
234
internal void SetFinalResolved(
XmlSchemaDerivationMethod
value)
244
internal void SetDerivedBy(
XmlSchemaDerivationMethod
value)
277
public static bool IsDerivedFrom([NotNullWhen(true)] XmlSchemaType? derivedType, [NotNullWhen(true)] XmlSchemaType? baseType,
XmlSchemaDerivationMethod
except)
System\Xml\Schema\XmlSchemaValidator.cs (1)
1399
if ((headElem.BlockResolved &
XmlSchemaDerivationMethod
.Substitution) != 0)
System\Xml\Schema\XmlValueConverter.cs (2)
3142
while (schemaType.DerivedBy ==
XmlSchemaDerivationMethod
.Restriction)
3146
Debug.Assert(schemaType.DerivedBy ==
XmlSchemaDerivationMethod
.Union);
System\Xml\Schema\XsdBuilder.cs (14)
603
(int)
XmlSchemaDerivationMethod
.Substitution,
604
(int)
XmlSchemaDerivationMethod
.Extension,
605
(int)
XmlSchemaDerivationMethod
.Restriction,
606
(int)
XmlSchemaDerivationMethod
.List,
607
(int)
XmlSchemaDerivationMethod
.Union,
608
(int)
XmlSchemaDerivationMethod
.All,
1142
builder._schema.FinalDefault = (
XmlSchemaDerivationMethod
)builder.ParseBlockFinalEnum(value, "finalDefault");
1147
builder._schema.BlockDefault = (
XmlSchemaDerivationMethod
)builder.ParseBlockFinalEnum(value, "blockDefault");
1345
builder._element!.Block = (
XmlSchemaDerivationMethod
)builder.ParseBlockFinalEnum(value, "block");
1365
builder._element!.Final = (
XmlSchemaDerivationMethod
)builder.ParseBlockFinalEnum(value, "final");
1484
builder._simpleType!.Final = (
XmlSchemaDerivationMethod
)builder.ParseBlockFinalEnum(value, "final");
1614
builder._complexType!.Block = (
XmlSchemaDerivationMethod
)builder.ParseBlockFinalEnum(value, "block");
1619
builder._complexType!.Final = (
XmlSchemaDerivationMethod
)builder.ParseBlockFinalEnum(value, "final");
2545
if (r == (int)
XmlSchemaDerivationMethod
.All && value.Length > HashAllLength)
System\Xml\Serialization\SchemaObjectWriter.cs (1)
580
private static string Write11_XmlSchemaDerivationMethod(
XmlSchemaDerivationMethod
v)
System\Xml\Xsl\XmlQueryType.cs (3)
518
(baseSchemaType == XmlSchemaComplexType.AnyType || XmlSchemaType.IsDerivedFrom(SchemaType, baseSchemaType, /* except:*/
XmlSchemaDerivationMethod
.Empty)) &&
540
if (!XmlSchemaType.IsDerivedFrom(this.SchemaType, other.SchemaType, /* except:*/
XmlSchemaDerivationMethod
.Empty) &&
541
!XmlSchemaType.IsDerivedFrom(other.SchemaType, this.SchemaType, /* except:*/
XmlSchemaDerivationMethod
.Empty))
System\Xml\Xsl\XmlQueryTypeFactory.cs (3)
55
while (schemaType.DerivedBy ==
XmlSchemaDerivationMethod
.Restriction)
59
if (schemaType.DerivedBy ==
XmlSchemaDerivationMethod
.List)
63
Debug.Assert(schemaType.DerivedBy ==
XmlSchemaDerivationMethod
.Union);
System.Xml (1)
System.Xml.cs (1)
46
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Schema.
XmlSchemaDerivationMethod
))]
System.Xml.ReaderWriter (1)
artifacts\obj\System.Xml.ReaderWriter\Debug\net10.0\System.Xml.ReaderWriter.Forwards.cs (1)
45
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Schema.
XmlSchemaDerivationMethod
))]