5 instantiations of XmlSchemaComplexContentRestriction
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\SchemaUtility.cs (1)
232
XmlSchemaComplexContentRestriction contentRestriction = new
XmlSchemaComplexContentRestriction
();
System.Web.Services (2)
System\Web\Services\Description\HttpProtocolReflector.cs (1)
89
XmlSchemaComplexContentRestriction restriction = new
XmlSchemaComplexContentRestriction
();
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
10013
o = new global::System.Xml.Schema.
XmlSchemaComplexContentRestriction
();
System.Xml (2)
System\Xml\Schema\XsdBuilder.cs (1)
1569
builder.xso = builder.complexContentRestriction = new
XmlSchemaComplexContentRestriction
();
System\Xml\Serialization\SoapSchemaExporter.cs (1)
211
XmlSchemaComplexContentRestriction restriction = new
XmlSchemaComplexContentRestriction
();
69 references to XmlSchemaComplexContentRestriction
System.Data (5)
fx\src\data\System\Data\XMLSchema.cs (5)
918
Debug.Assert(cContent is
XmlSchemaComplexContentRestriction
, "Expected complexContent extension or restriction");
919
XmlSchemaComplexContentRestriction
ccRestriction = ((
XmlSchemaComplexContentRestriction
) cContent );
972
Debug.Assert(cContent is
XmlSchemaComplexContentRestriction
, "Expected complexContent extension or restriction");
973
return ((
XmlSchemaComplexContentRestriction
) cContent ).Particle;
System.Runtime.Serialization (3)
System\Runtime\Serialization\SchemaImporter.cs (3)
475
else if (complexContent.Content is
XmlSchemaComplexContentRestriction
)
477
XmlSchemaComplexContentRestriction
restriction = (
XmlSchemaComplexContentRestriction
)complexContent.Content;
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\SchemaUtility.cs (1)
232
XmlSchemaComplexContentRestriction
contentRestriction = new XmlSchemaComplexContentRestriction();
System.ServiceModel.Web (2)
System\ServiceModel\Dispatcher\HelpExampleGenerator.cs (2)
41
{ typeof(
XmlSchemaComplexContentRestriction
), ErrorHandler },
91
{ typeof(
XmlSchemaComplexContentRestriction
), ErrorHandler },
System.Web.Services (9)
System\Web\Services\Description\HttpProtocolImporter.cs (2)
117
else if (type.ContentModel.Content is
XmlSchemaComplexContentRestriction
) {
118
return ((
XmlSchemaComplexContentRestriction
)type.ContentModel.Content).BaseTypeName == new XmlQualifiedName(Soap.ArrayType, Soap.Encoding);
System\Web\Services\Description\HttpProtocolReflector.cs (1)
89
XmlSchemaComplexContentRestriction
restriction = new XmlSchemaComplexContentRestriction();
System\Web\Services\Description\ServiceDescriptionSerializer.cs (6)
3491
if (o.@Content is global::System.Xml.Schema.
XmlSchemaComplexContentRestriction
) {
3492
Write57_Item(@"restriction", @"http://www.w3.org/2001/XMLSchema", ((global::System.Xml.Schema.
XmlSchemaComplexContentRestriction
)o.@Content), false, false);
3578
void Write57_Item(string n, string ns, global::System.Xml.Schema.
XmlSchemaComplexContentRestriction
o, bool isNullable, bool needType) {
3585
if (t == typeof(global::System.Xml.Schema.
XmlSchemaComplexContentRestriction
)) {
10000
global::System.Xml.Schema.
XmlSchemaComplexContentRestriction
Read57_Item(bool isNullable, bool checkType) {
10012
global::System.Xml.Schema.
XmlSchemaComplexContentRestriction
o;
System.Xml (49)
System\Xml\Schema\Preprocessor.cs (4)
953
if (content.Content is
XmlSchemaComplexContentRestriction
) {
954
baseName = ((
XmlSchemaComplexContentRestriction
)content.Content).BaseTypeName;
1489
XmlSchemaComplexContentRestriction
contentRestriction = (
XmlSchemaComplexContentRestriction
)content.Content;
System\Xml\Schema\SchemaCollectionCompiler.cs (4)
277
XmlSchemaComplexContentRestriction
complexRestriction = (
XmlSchemaComplexContentRestriction
)complexContent.Content;
582
CompileComplexContentRestriction(complexType, complexContent, (
XmlSchemaComplexContentRestriction
)complexContent.Content);
783
private void CompileComplexContentRestriction(XmlSchemaComplexType complexType, XmlSchemaComplexContent complexContent,
XmlSchemaComplexContentRestriction
complexRestriction) {
System\Xml\Schema\SchemaCollectionpreProcessor.cs (4)
645
if (content.Content is
XmlSchemaComplexContentRestriction
) {
646
baseName = ((
XmlSchemaComplexContentRestriction
)content.Content).BaseTypeName;
1175
XmlSchemaComplexContentRestriction
contentRestriction = (
XmlSchemaComplexContentRestriction
)content.Content;
System\Xml\Schema\SchemaSetCompiler.cs (4)
265
XmlSchemaComplexContentRestriction
complexRestriction = (
XmlSchemaComplexContentRestriction
)complexContent.Content;
650
CompileComplexContentRestriction(complexType, complexContent, (
XmlSchemaComplexContentRestriction
)complexContent.Content);
842
private void CompileComplexContentRestriction(XmlSchemaComplexType complexType, XmlSchemaComplexContent complexContent,
XmlSchemaComplexContentRestriction
complexRestriction) {
System\Xml\Schema\XmlSchemaComplexContent.cs (1)
35
[XmlElement("restriction", typeof(
XmlSchemaComplexContentRestriction
)),
System\Xml\Schema\XmlSchemaComplexType.cs (6)
320
if (contentModel.Content is
XmlSchemaComplexContentRestriction
)
321
return ((
XmlSchemaComplexContentRestriction
)contentModel.Content).BaseTypeName;
400
XmlSchemaComplexContentRestriction
complexRest = complexContent.Content as
XmlSchemaComplexContentRestriction
;
401
XmlSchemaComplexContentRestriction
newComplexRest = (
XmlSchemaComplexContentRestriction
)complexRest.Clone();
System\Xml\Schema\XsdBuilder.cs (2)
644
private
XmlSchemaComplexContentRestriction
complexContentRestriction;
1001
this.complexContentRestriction = (
XmlSchemaComplexContentRestriction
)container;
System\Xml\Serialization\ImportContext.cs (3)
298
if (content is
XmlSchemaComplexContentRestriction
) {
299
baseName = ((
XmlSchemaComplexContentRestriction
)content).BaseTypeName;
300
attributes = ((
XmlSchemaComplexContentRestriction
)content).Attributes;
System\Xml\Serialization\SchemaObjectWriter.cs (5)
350
else if (t == typeof(
XmlSchemaComplexContentRestriction
)) {
351
Write56_XmlSchemaComplexContentRestriction((
XmlSchemaComplexContentRestriction
)o);
758
if (o.@Content is
XmlSchemaComplexContentRestriction
) {
759
Write56_XmlSchemaComplexContentRestriction((
XmlSchemaComplexContentRestriction
)o.@Content);
1022
void Write56_XmlSchemaComplexContentRestriction(
XmlSchemaComplexContentRestriction
o) {
System\Xml\Serialization\SoapSchemaExporter.cs (3)
211
XmlSchemaComplexContentRestriction
restriction = new XmlSchemaComplexContentRestriction();
333
else if (type.ContentModel.Content is
XmlSchemaComplexContentRestriction
)
334
((
XmlSchemaComplexContentRestriction
)type.ContentModel.Content).Particle = seq;
System\Xml\Serialization\SoapSchemaImporter.cs (6)
341
else if (model.Content is
XmlSchemaComplexContentRestriction
) {
342
if (((
XmlSchemaComplexContentRestriction
)model.Content).Particle != null) {
343
ImportGroup(((
XmlSchemaComplexContentRestriction
)model.Content).Particle, members, typeNs);
422
if (!(model.Content is
XmlSchemaComplexContentRestriction
)) return null;
426
XmlSchemaComplexContentRestriction
restriction = (
XmlSchemaComplexContentRestriction
)model.Content;
System\Xml\Serialization\XmlSchemaExporter.cs (7)
611
if (type.ContentModel.Content is
XmlSchemaComplexContentRestriction
)
612
attributes = ((
XmlSchemaComplexContentRestriction
)type.ContentModel.Content).Attributes;
645
else if (content is
XmlSchemaComplexContentRestriction
) {
646
XmlSchemaComplexContentRestriction
restriction = (
XmlSchemaComplexContentRestriction
)content;
947
if (type.ContentModel.Content is
XmlSchemaComplexContentRestriction
)
948
((
XmlSchemaComplexContentRestriction
)type.ContentModel.Content).Particle = seq;