4 instantiations of XmlSchemaComplexContentExtension
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1676
builder._xso = builder._complexContentExtension = new
XmlSchemaComplexContentExtension
();
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (1)
333
XmlSchemaComplexContentExtension extension = new
XmlSchemaComplexContentExtension
();
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
1045
XmlSchemaComplexContentExtension extension = new
XmlSchemaComplexContentExtension
();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
12490
o = new Microsoft.Xml.Schema.
XmlSchemaComplexContentExtension
();
65 references to XmlSchemaComplexContentExtension
dotnet-svcutil-lib (65)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (4)
1157
baseName = ((
XmlSchemaComplexContentExtension
)content.Content).BaseTypeName;
1817
if (content.Content is
XmlSchemaComplexContentExtension
)
1819
XmlSchemaComplexContentExtension
contentExtension = (
XmlSchemaComplexContentExtension
)content.Content;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (6)
336
if (complexContent.Content is
XmlSchemaComplexContentExtension
)
338
XmlSchemaComplexContentExtension
complexExtension = (
XmlSchemaComplexContentExtension
)complexContent.Content;
724
if (complexContent.Content is
XmlSchemaComplexContentExtension
)
726
CompileComplexContentExtension(complexType, complexContent, (
XmlSchemaComplexContentExtension
)complexContent.Content);
916
private void CompileComplexContentExtension(XmlSchemaComplexType complexType, XmlSchemaComplexContent complexContent,
XmlSchemaComplexContentExtension
complexExtension)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (4)
806
baseName = ((
XmlSchemaComplexContentExtension
)content.Content).BaseTypeName;
1460
if (content.Content is
XmlSchemaComplexContentExtension
)
1462
XmlSchemaComplexContentExtension
contentExtension = (
XmlSchemaComplexContentExtension
)content.Content;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (6)
322
if (complexContent.Content is
XmlSchemaComplexContentExtension
)
324
XmlSchemaComplexContentExtension
complexExtension = (
XmlSchemaComplexContentExtension
)complexContent.Content;
811
if (complexContent.Content is
XmlSchemaComplexContentExtension
)
813
CompileComplexContentExtension(complexType, complexContent, (
XmlSchemaComplexContentExtension
)complexContent.Content);
994
private void CompileComplexContentExtension(XmlSchemaComplexType complexType, XmlSchemaComplexContent complexContent,
XmlSchemaComplexContentExtension
complexExtension)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexContent.cs (1)
39
XmlElement("extension", typeof(
XmlSchemaComplexContentExtension
))]
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (6)
369
else if (_contentModel.Content is
XmlSchemaComplexContentExtension
)
370
return ((
XmlSchemaComplexContentExtension
)_contentModel.Content).BaseTypeName;
448
XmlSchemaComplexContentExtension
complexExt = complexContent.Content as
XmlSchemaComplexContentExtension
;
451
XmlSchemaComplexContentExtension
newComplexExt = (
XmlSchemaComplexContentExtension
)complexExt.Clone();
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (2)
654
private
XmlSchemaComplexContentExtension
_complexContentExtension;
1044
_complexContentExtension = (
XmlSchemaComplexContentExtension
)container;
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (3)
363
else if (content is
XmlSchemaComplexContentExtension
)
365
XmlSchemaComplexContentExtension
extension = (
XmlSchemaComplexContentExtension
)content;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (5)
429
else if (t == typeof(
XmlSchemaComplexContentExtension
))
431
Write42_XmlSchemaComplexContentExtension((
XmlSchemaComplexContentExtension
)o);
915
else if (o.@Content is
XmlSchemaComplexContentExtension
)
917
Write42_XmlSchemaComplexContentExtension((
XmlSchemaComplexContentExtension
)o.@Content);
922
private void Write42_XmlSchemaComplexContentExtension(
XmlSchemaComplexContentExtension
o)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (3)
333
XmlSchemaComplexContentExtension
extension = new XmlSchemaComplexContentExtension();
384
if (type.ContentModel.Content is
XmlSchemaComplexContentExtension
)
385
((
XmlSchemaComplexContentExtension
)type.ContentModel.Content).Particle = seq;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaImporter.cs (3)
372
if (model.Content is
XmlSchemaComplexContentExtension
)
374
if (((
XmlSchemaComplexContentExtension
)model.Content).Particle != null)
376
ImportGroup(((
XmlSchemaComplexContentExtension
)model.Content).Particle, members, typeNs);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (8)
715
else if (type.ContentModel.Content is
XmlSchemaComplexContentExtension
)
716
attributes = ((
XmlSchemaComplexContentExtension
)type.ContentModel.Content).Attributes;
747
if (content is
XmlSchemaComplexContentExtension
)
749
XmlSchemaComplexContentExtension
extension = (
XmlSchemaComplexContentExtension
)content;
1045
XmlSchemaComplexContentExtension
extension = new XmlSchemaComplexContentExtension();
1114
else if (type.ContentModel.Content is
XmlSchemaComplexContentExtension
)
1115
((
XmlSchemaComplexContentExtension
)type.ContentModel.Content).Particle = seq;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (3)
821
if (content is
XmlSchemaComplexContentExtension
)
823
XmlSchemaComplexContentExtension
extension = (
XmlSchemaComplexContentExtension
)content;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (5)
325
XmlSchemaComplexContentExtension
extension = complexContent.Content as
XmlSchemaComplexContentExtension
;
469
if (complexContent.Content is
XmlSchemaComplexContentExtension
)
471
XmlSchemaComplexContentExtension
extension = (
XmlSchemaComplexContentExtension
)complexContent.Content;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (6)
4406
else if (o.@Content is Microsoft.Xml.Schema.
XmlSchemaComplexContentExtension
)
4408
Write56_Item(@"extension", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.
XmlSchemaComplexContentExtension
)o.@Content), false, false);
4421
private void Write56_Item(string n, string ns, Microsoft.Xml.Schema.
XmlSchemaComplexContentExtension
o, bool isNullable, bool needType)
4431
if (t == typeof(Microsoft.Xml.Schema.
XmlSchemaComplexContentExtension
))
12474
private Microsoft.Xml.Schema.
XmlSchemaComplexContentExtension
Read56_Item(bool isNullable, bool checkType)
12489
Microsoft.Xml.Schema.
XmlSchemaComplexContentExtension
o;