3 instantiations of XmlSchemaComplexContentRestriction
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1695builder._xso = builder._complexContentRestriction = new XmlSchemaComplexContentRestriction();
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (1)
244XmlSchemaComplexContentRestriction restriction = new XmlSchemaComplexContentRestriction();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
12374o = new Microsoft.Xml.Schema.XmlSchemaComplexContentRestriction();
58 references to XmlSchemaComplexContentRestriction
dotnet-svcutil-lib (58)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (4)
1151if (content.Content is XmlSchemaComplexContentRestriction) 1153baseName = ((XmlSchemaComplexContentRestriction)content.Content).BaseTypeName; 1838XmlSchemaComplexContentRestriction contentRestriction = (XmlSchemaComplexContentRestriction)content.Content;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (4)
344XmlSchemaComplexContentRestriction complexRestriction = (XmlSchemaComplexContentRestriction)complexContent.Content; 730CompileComplexContentRestriction(complexType, complexContent, (XmlSchemaComplexContentRestriction)complexContent.Content); 982private void CompileComplexContentRestriction(XmlSchemaComplexType complexType, XmlSchemaComplexContent complexContent, XmlSchemaComplexContentRestriction complexRestriction)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (4)
800if (content.Content is XmlSchemaComplexContentRestriction) 802baseName = ((XmlSchemaComplexContentRestriction)content.Content).BaseTypeName; 1481XmlSchemaComplexContentRestriction contentRestriction = (XmlSchemaComplexContentRestriction)content.Content;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (4)
330XmlSchemaComplexContentRestriction complexRestriction = (XmlSchemaComplexContentRestriction)complexContent.Content; 817CompileComplexContentRestriction(complexType, complexContent, (XmlSchemaComplexContentRestriction)complexContent.Content); 1060private void CompileComplexContentRestriction(XmlSchemaComplexType complexType, XmlSchemaComplexContent complexContent, XmlSchemaComplexContentRestriction complexRestriction)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexContent.cs (1)
38[XmlElement("restriction", typeof(XmlSchemaComplexContentRestriction)),
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (6)
367if (_contentModel.Content is XmlSchemaComplexContentRestriction) 368return ((XmlSchemaComplexContentRestriction)_contentModel.Content).BaseTypeName; 462XmlSchemaComplexContentRestriction complexRest = complexContent.Content as XmlSchemaComplexContentRestriction; 463XmlSchemaComplexContentRestriction newComplexRest = (XmlSchemaComplexContentRestriction)complexRest.Clone();
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (2)
655private XmlSchemaComplexContentRestriction _complexContentRestriction; 1047_complexContentRestriction = (XmlSchemaComplexContentRestriction)container;
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (3)
349if (content is XmlSchemaComplexContentRestriction) 351baseName = ((XmlSchemaComplexContentRestriction)content).BaseTypeName; 352attributes = ((XmlSchemaComplexContentRestriction)content).Attributes;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (5)
424else if (t == typeof(XmlSchemaComplexContentRestriction)) 426Write56_XmlSchemaComplexContentRestriction((XmlSchemaComplexContentRestriction)o); 911if (o.@Content is XmlSchemaComplexContentRestriction) 913Write56_XmlSchemaComplexContentRestriction((XmlSchemaComplexContentRestriction)o.@Content); 1224private void Write56_XmlSchemaComplexContentRestriction(XmlSchemaComplexContentRestriction o)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (3)
244XmlSchemaComplexContentRestriction restriction = new XmlSchemaComplexContentRestriction(); 386else if (type.ContentModel.Content is XmlSchemaComplexContentRestriction) 387((XmlSchemaComplexContentRestriction)type.ContentModel.Content).Particle = seq;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaImporter.cs (6)
379else if (model.Content is XmlSchemaComplexContentRestriction) 381if (((XmlSchemaComplexContentRestriction)model.Content).Particle != null) 383ImportGroup(((XmlSchemaComplexContentRestriction)model.Content).Particle, members, typeNs); 471if (!(model.Content is XmlSchemaComplexContentRestriction)) return null; 475XmlSchemaComplexContentRestriction restriction = (XmlSchemaComplexContentRestriction)model.Content;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (7)
713if (type.ContentModel.Content is XmlSchemaComplexContentRestriction) 714attributes = ((XmlSchemaComplexContentRestriction)type.ContentModel.Content).Attributes; 752else if (content is XmlSchemaComplexContentRestriction) 754XmlSchemaComplexContentRestriction restriction = (XmlSchemaComplexContentRestriction)content; 1112if (type.ContentModel.Content is XmlSchemaComplexContentRestriction) 1113((XmlSchemaComplexContentRestriction)type.ContentModel.Content).Particle = seq;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (3)
474else if (complexContent.Content is XmlSchemaComplexContentRestriction) 476XmlSchemaComplexContentRestriction restriction = (XmlSchemaComplexContentRestriction)complexContent.Content;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (6)
4402if (o.@Content is Microsoft.Xml.Schema.XmlSchemaComplexContentRestriction) 4404Write57_Item(@"restriction", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.XmlSchemaComplexContentRestriction)o.@Content), false, false); 4512private void Write57_Item(string n, string ns, Microsoft.Xml.Schema.XmlSchemaComplexContentRestriction o, bool isNullable, bool needType) 4522if (t == typeof(Microsoft.Xml.Schema.XmlSchemaComplexContentRestriction)) 12358private Microsoft.Xml.Schema.XmlSchemaComplexContentRestriction Read57_Item(bool isNullable, bool checkType) 12373Microsoft.Xml.Schema.XmlSchemaComplexContentRestriction o;