33 references to Extension
dotnet-svcutil-lib (33)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (7)
70
private const XmlSchemaDerivationMethod schemaBlockDefaultAllowed = XmlSchemaDerivationMethod.Restriction | XmlSchemaDerivationMethod.
Extension
| XmlSchemaDerivationMethod.Substitution;
71
private const XmlSchemaDerivationMethod schemaFinalDefaultAllowed = XmlSchemaDerivationMethod.Restriction | XmlSchemaDerivationMethod.
Extension
| XmlSchemaDerivationMethod.List | XmlSchemaDerivationMethod.Union;
72
private const XmlSchemaDerivationMethod elementBlockAllowed = XmlSchemaDerivationMethod.Restriction | XmlSchemaDerivationMethod.
Extension
| XmlSchemaDerivationMethod.Substitution;
73
private const XmlSchemaDerivationMethod elementFinalAllowed = XmlSchemaDerivationMethod.Restriction | XmlSchemaDerivationMethod.
Extension
;
74
private const XmlSchemaDerivationMethod simpleTypeFinalAllowed = XmlSchemaDerivationMethod.Restriction | XmlSchemaDerivationMethod.
Extension
| XmlSchemaDerivationMethod.List | XmlSchemaDerivationMethod.Union;
75
private const XmlSchemaDerivationMethod complexTypeBlockAllowed = XmlSchemaDerivationMethod.Restriction | XmlSchemaDerivationMethod.
Extension
;
76
private const XmlSchemaDerivationMethod complexTypeFinalAllowed = XmlSchemaDerivationMethod.Restriction | XmlSchemaDerivationMethod.
Extension
;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (7)
818
if ((baseType.FinalResolved & XmlSchemaDerivationMethod.
Extension
) != 0)
827
complexType.SetDerivedBy(XmlSchemaDerivationMethod.
Extension
);
828
CompileLocalAttributes(baseType, complexType, simpleExtension.Attributes, simpleExtension.AnyAttribute, XmlSchemaDerivationMethod.
Extension
);
942
if ((baseType.FinalResolved & XmlSchemaDerivationMethod.
Extension
) != 0)
946
CompileLocalAttributes(baseType, complexType, complexExtension.Attributes, complexExtension.AnyAttribute, XmlSchemaDerivationMethod.
Extension
);
979
complexType.SetDerivedBy(XmlSchemaDerivationMethod.
Extension
);
1852
if (derivedBy == XmlSchemaDerivationMethod.
Extension
)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (6)
39
private const XmlSchemaDerivationMethod schemaBlockDefaultAllowed = XmlSchemaDerivationMethod.Restriction | XmlSchemaDerivationMethod.
Extension
| XmlSchemaDerivationMethod.Substitution;
40
private const XmlSchemaDerivationMethod schemaFinalDefaultAllowed = XmlSchemaDerivationMethod.Restriction | XmlSchemaDerivationMethod.
Extension
| XmlSchemaDerivationMethod.List | XmlSchemaDerivationMethod.Union;
41
private const XmlSchemaDerivationMethod elementBlockAllowed = XmlSchemaDerivationMethod.Restriction | XmlSchemaDerivationMethod.
Extension
| XmlSchemaDerivationMethod.Substitution;
42
private const XmlSchemaDerivationMethod elementFinalAllowed = XmlSchemaDerivationMethod.Restriction | XmlSchemaDerivationMethod.
Extension
;
44
private const XmlSchemaDerivationMethod complexTypeBlockAllowed = XmlSchemaDerivationMethod.Restriction | XmlSchemaDerivationMethod.
Extension
;
45
private const XmlSchemaDerivationMethod complexTypeFinalAllowed = XmlSchemaDerivationMethod.Restriction | XmlSchemaDerivationMethod.
Extension
;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (9)
896
if ((baseType.FinalResolved & XmlSchemaDerivationMethod.
Extension
) != 0)
905
complexType.SetDerivedBy(XmlSchemaDerivationMethod.
Extension
);
906
CompileLocalAttributes(baseType, complexType, simpleExtension.Attributes, simpleExtension.AnyAttribute, XmlSchemaDerivationMethod.
Extension
);
1011
if ((baseType.FinalResolved & XmlSchemaDerivationMethod.
Extension
) != 0)
1015
CompileLocalAttributes(baseType, complexType, complexExtension.Attributes, complexExtension.AnyAttribute, XmlSchemaDerivationMethod.
Extension
);
1057
complexType.SetDerivedBy(XmlSchemaDerivationMethod.
Extension
);
1644
XmlSchemaDerivationMethod.Substitution | XmlSchemaDerivationMethod.Restriction | XmlSchemaDerivationMethod.
Extension
:
1648
XmlSchemaDerivationMethod.Substitution | XmlSchemaDerivationMethod.Restriction | XmlSchemaDerivationMethod.
Extension
:
2195
if (derivedBy == XmlSchemaDerivationMethod.
Extension
)
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
614
(int)XmlSchemaDerivationMethod.
Extension
,
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (3)
3896
case Microsoft.Xml.Schema.XmlSchemaDerivationMethod.
@Extension
: s = @"extension"; break;
3910
(long)Microsoft.Xml.Schema.XmlSchemaDerivationMethod.
@Extension
,
10725
h.Add(@"extension", (long)Microsoft.Xml.Schema.XmlSchemaDerivationMethod.
@Extension
);