Base:
property
Content
Microsoft.Xml.Schema.XmlSchemaContentModel.Content
9 writes to Content
dotnet-svcutil-lib (9)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (2)
458newComplexContent.Content = newComplexExt; 470newComplexContent.Content = newComplexRest;
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (2)
1677builder._complexContent.Content = builder._complexContentExtension; 1696builder._complexContent.Content = builder._complexContentRestriction;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (2)
262model.Content = restriction; 336model.Content = extension;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
1048model.Content = extension;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (2)
12333o.@Content = Read56_Item(false, true); 12338o.@Content = Read57_Item(false, true);
54 references to Content
dotnet-svcutil-lib (54)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (9)
1151if (content.Content is XmlSchemaComplexContentRestriction) 1153baseName = ((XmlSchemaComplexContentRestriction)content.Content).BaseTypeName; 1157baseName = ((XmlSchemaComplexContentExtension)content.Content).BaseTypeName; 1797if (content.Content == null) 1814SetParent(content.Content, content); //complexcontent extension / restriction 1815PreprocessAnnotation(content.Content); //Annotation child of extension / restriction 1817if (content.Content is XmlSchemaComplexContentExtension) 1819XmlSchemaComplexContentExtension contentExtension = (XmlSchemaComplexContentExtension)content.Content; 1838XmlSchemaComplexContentRestriction contentRestriction = (XmlSchemaComplexContentRestriction)content.Content;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (6)
336if (complexContent.Content is XmlSchemaComplexContentExtension) 338XmlSchemaComplexContentExtension complexExtension = (XmlSchemaComplexContentExtension)complexContent.Content; 344XmlSchemaComplexContentRestriction complexRestriction = (XmlSchemaComplexContentRestriction)complexContent.Content; 724if (complexContent.Content is XmlSchemaComplexContentExtension) 726CompileComplexContentExtension(complexType, complexContent, (XmlSchemaComplexContentExtension)complexContent.Content); 730CompileComplexContentRestriction(complexType, complexContent, (XmlSchemaComplexContentRestriction)complexContent.Content);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (9)
800if (content.Content is XmlSchemaComplexContentRestriction) 802baseName = ((XmlSchemaComplexContentRestriction)content.Content).BaseTypeName; 806baseName = ((XmlSchemaComplexContentExtension)content.Content).BaseTypeName; 1440if (content.Content == null) 1457SetParent(content.Content, content); //complexcontent extension / restriction 1458PreprocessAnnotation(content.Content); //Annotation child of extension / restriction 1460if (content.Content is XmlSchemaComplexContentExtension) 1462XmlSchemaComplexContentExtension contentExtension = (XmlSchemaComplexContentExtension)content.Content; 1481XmlSchemaComplexContentRestriction contentRestriction = (XmlSchemaComplexContentRestriction)content.Content;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (6)
322if (complexContent.Content is XmlSchemaComplexContentExtension) 324XmlSchemaComplexContentExtension complexExtension = (XmlSchemaComplexContentExtension)complexContent.Content; 330XmlSchemaComplexContentRestriction complexRestriction = (XmlSchemaComplexContentRestriction)complexContent.Content; 811if (complexContent.Content is XmlSchemaComplexContentExtension) 813CompileComplexContentExtension(complexType, complexContent, (XmlSchemaComplexContentExtension)complexContent.Content); 817CompileComplexContentRestriction(complexType, complexContent, (XmlSchemaComplexContentRestriction)complexContent.Content);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (2)
448XmlSchemaComplexContentExtension complexExt = complexContent.Content as XmlSchemaComplexContentExtension; 462XmlSchemaComplexContentRestriction complexRest = complexContent.Content as XmlSchemaComplexContentRestriction;
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1672if (builder._complexContent.Content != null)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (4)
911if (o.@Content is XmlSchemaComplexContentRestriction) 913Write56_XmlSchemaComplexContentRestriction((XmlSchemaComplexContentRestriction)o.@Content); 915else if (o.@Content is XmlSchemaComplexContentExtension) 917Write42_XmlSchemaComplexContentExtension((XmlSchemaComplexContentExtension)o.@Content);
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaImporter.cs (6)
372if (model.Content is XmlSchemaComplexContentExtension) 374if (((XmlSchemaComplexContentExtension)model.Content).Particle != null) 376ImportGroup(((XmlSchemaComplexContentExtension)model.Content).Particle, members, typeNs); 379else if (model.Content is XmlSchemaComplexContentRestriction) 381if (((XmlSchemaComplexContentRestriction)model.Content).Particle != null) 383ImportGroup(((XmlSchemaComplexContentRestriction)model.Content).Particle, members, typeNs);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (5)
325XmlSchemaComplexContentExtension extension = complexContent.Content as XmlSchemaComplexContentExtension; 469if (complexContent.Content is XmlSchemaComplexContentExtension) 471XmlSchemaComplexContentExtension extension = (XmlSchemaComplexContentExtension)complexContent.Content; 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); 4406else if (o.@Content is Microsoft.Xml.Schema.XmlSchemaComplexContentExtension) 4408Write56_Item(@"extension", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.XmlSchemaComplexContentExtension)o.@Content), false, false); 4412if (o.@Content != null) 4414throw CreateUnknownTypeException(o.@Content);