5 instantiations of XmlSchemaComplexContent
dotnet-svcutil-lib (5)
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1653
builder._xso = builder._complexContent = new
XmlSchemaComplexContent
();
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (2)
261
XmlSchemaComplexContent model = new
XmlSchemaComplexContent
();
335
XmlSchemaComplexContent model = new
XmlSchemaComplexContent
();
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
1047
XmlSchemaComplexContent model = new
XmlSchemaComplexContent
();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
12282
o = new Microsoft.Xml.Schema.
XmlSchemaComplexContent
();
55 references to XmlSchemaComplexContent
dotnet-svcutil-lib (55)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (5)
1148
if (ctype.ContentModel is
XmlSchemaComplexContent
)
1150
XmlSchemaComplexContent
content = (
XmlSchemaComplexContent
)ctype.ContentModel;
1796
XmlSchemaComplexContent
content = (
XmlSchemaComplexContent
)complexType.ContentModel;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (7)
335
XmlSchemaComplexContent
complexContent = (
XmlSchemaComplexContent
)complexType.ContentModel;
723
XmlSchemaComplexContent
complexContent = (
XmlSchemaComplexContent
)complexType.ContentModel;
916
private void CompileComplexContentExtension(XmlSchemaComplexType complexType,
XmlSchemaComplexContent
complexContent, XmlSchemaComplexContentExtension complexExtension)
982
private void CompileComplexContentRestriction(XmlSchemaComplexType complexType,
XmlSchemaComplexContent
complexContent, XmlSchemaComplexContentRestriction complexRestriction)
1699
private XmlSchemaContentType GetSchemaContentType(XmlSchemaComplexType complexType,
XmlSchemaComplexContent
complexContent, XmlSchemaParticle particle)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (5)
797
if (ctype.ContentModel is
XmlSchemaComplexContent
)
799
XmlSchemaComplexContent
content = (
XmlSchemaComplexContent
)ctype.ContentModel;
1439
XmlSchemaComplexContent
content = (
XmlSchemaComplexContent
)complexType.ContentModel;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (7)
321
XmlSchemaComplexContent
complexContent = (
XmlSchemaComplexContent
)complexType.ContentModel;
810
XmlSchemaComplexContent
complexContent = (
XmlSchemaComplexContent
)complexType.ContentModel;
994
private void CompileComplexContentExtension(XmlSchemaComplexType complexType,
XmlSchemaComplexContent
complexContent, XmlSchemaComplexContentExtension complexExtension)
1060
private void CompileComplexContentRestriction(XmlSchemaComplexType complexType,
XmlSchemaComplexContent
complexContent, XmlSchemaComplexContentRestriction complexRestriction)
2034
private XmlSchemaContentType GetSchemaContentType(XmlSchemaComplexType complexType,
XmlSchemaComplexContent
complexContent, XmlSchemaParticle particle)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (5)
199
XmlElement("complexContent", typeof(
XmlSchemaComplexContent
))]
445
XmlSchemaComplexContent
complexContent = (
XmlSchemaComplexContent
)complexType.ContentModel;
446
XmlSchemaComplexContent
newComplexContent = (
XmlSchemaComplexContent
)complexContent.Clone();
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (2)
653
private
XmlSchemaComplexContent
_complexContent;
1041
_complexContent = (
XmlSchemaComplexContent
)container;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (5)
444
else if (t == typeof(
XmlSchemaComplexContent
))
446
Write41_XmlSchemaComplexContent((
XmlSchemaComplexContent
)o);
819
if (o.@ContentModel is
XmlSchemaComplexContent
)
821
Write41_XmlSchemaComplexContent((
XmlSchemaComplexContent
)o.@ContentModel);
902
private void Write41_XmlSchemaComplexContent(
XmlSchemaComplexContent
o)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (2)
261
XmlSchemaComplexContent
model = new XmlSchemaComplexContent();
335
XmlSchemaComplexContent
model = new XmlSchemaComplexContent();
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaImporter.cs (3)
368
else if (type.ContentModel != null && type.ContentModel is
XmlSchemaComplexContent
)
370
XmlSchemaComplexContent
model = (
XmlSchemaComplexContent
)type.ContentModel;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
1047
XmlSchemaComplexContent
model = new XmlSchemaComplexContent();
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (2)
803
if (ct.ContentModel != null && ct.ContentModel is
XmlSchemaComplexContent
)
805
mixed = ((
XmlSchemaComplexContent
)ct.ContentModel).IsMixed;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (5)
322
XmlSchemaComplexContent
complexContent = complexType.ContentModel as
XmlSchemaComplexContent
;
463
else if (contentModel is
XmlSchemaComplexContent
)
465
XmlSchemaComplexContent
complexContent = (
XmlSchemaComplexContent
)contentModel;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (6)
3975
else if (o.@ContentModel is Microsoft.Xml.Schema.
XmlSchemaComplexContent
)
3977
Write58_XmlSchemaComplexContent(@"complexContent", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.
XmlSchemaComplexContent
)o.@ContentModel), false, false);
4366
private void Write58_XmlSchemaComplexContent(string n, string ns, Microsoft.Xml.Schema.
XmlSchemaComplexContent
o, bool isNullable, bool needType)
4376
if (t == typeof(Microsoft.Xml.Schema.
XmlSchemaComplexContent
))
12266
private Microsoft.Xml.Schema.
XmlSchemaComplexContent
Read58_XmlSchemaComplexContent(bool isNullable, bool checkType)
12281
Microsoft.Xml.Schema.
XmlSchemaComplexContent
o;