Base:
property
Content
System.Xml.Schema.XmlSchemaContentModel.Content
7 writes to Content
System.Private.Xml (5)
System\Xml\Schema\XmlSchemaComplexType.cs (2)
368newComplexContent.Content = newComplexExt; 381newComplexContent.Content = newComplexRest;
System\Xml\Schema\XsdBuilder.cs (2)
1672builder._complexContent.Content = builder._complexContentExtension; 1691builder._complexContent!.Content = builder._complexContentRestriction;
System\Xml\Serialization\XmlSchemaExporter.cs (1)
1005model.Content = extension;
System.Web.Services.Description (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
12393o.@Content = Read56_Item(false, true); 12397o.@Content = Read57_Item(false, true);
45 references to Content
System.Data.Common (2)
System\Data\XMLSchema.cs (2)
1054XmlSchemaAnnotated? cContent = ((XmlSchemaComplexContent)(ct.ContentModel)).Content; 1143XmlSchemaAnnotated cContent = ((XmlSchemaComplexContent)(ct.ContentModel)).Content!;
System.Private.DataContractSerialization (3)
System\Runtime\Serialization\SchemaImporter.cs (3)
318if (complexContent.Content is XmlSchemaComplexContentExtension extension) 464if (complexContent.Content is XmlSchemaComplexContentExtension extension) 468else if (complexContent.Content is XmlSchemaComplexContentRestriction restriction)
System.Private.Xml (34)
System\Xml\Schema\Preprocessor.cs (8)
1116if (content.Content is XmlSchemaComplexContentRestriction) 1118baseName = ((XmlSchemaComplexContentRestriction)content.Content).BaseTypeName; 1122baseName = ((XmlSchemaComplexContentExtension)content.Content!).BaseTypeName; 1762if (content.Content == null) 1779SetParent(content.Content, content); //complexcontent extension / restriction 1780PreprocessAnnotation(content.Content); //Annotation child of extension / restriction 1782if (content.Content is XmlSchemaComplexContentExtension contentExtension) 1802XmlSchemaComplexContentRestriction contentRestriction = (XmlSchemaComplexContentRestriction)content.Content;
System\Xml\Schema\SchemaCollectionCompiler.cs (6)
347if (complexContent.Content is XmlSchemaComplexContentExtension) 349XmlSchemaComplexContentExtension complexExtension = (XmlSchemaComplexContentExtension)complexContent.Content!; 355XmlSchemaComplexContentRestriction complexRestriction = (XmlSchemaComplexContentRestriction)complexContent.Content!; 733if (complexContent.Content is XmlSchemaComplexContentExtension) 735CompileComplexContentExtension(complexType, complexContent, (XmlSchemaComplexContentExtension)complexContent.Content); 739CompileComplexContentRestriction(complexType, complexContent, (XmlSchemaComplexContentRestriction)complexContent.Content!);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (8)
792if (content.Content is XmlSchemaComplexContentRestriction) 794baseName = ((XmlSchemaComplexContentRestriction)content.Content).BaseTypeName; 798baseName = ((XmlSchemaComplexContentExtension)content.Content!).BaseTypeName; 1427if (content.Content == null) 1444SetParent(content.Content, content); //complexcontent extension / restriction 1445PreprocessAnnotation(content.Content); //Annotation child of extension / restriction 1447if (content.Content is XmlSchemaComplexContentExtension contentExtension) 1467XmlSchemaComplexContentRestriction contentRestriction = (XmlSchemaComplexContentRestriction)content.Content;
System\Xml\Schema\SchemaSetCompiler.cs (5)
336if (complexContent.Content is XmlSchemaComplexContentExtension complexExtension) 343XmlSchemaComplexContentRestriction complexRestriction = (XmlSchemaComplexContentRestriction)complexContent.Content!; 824if (complexContent.Content is XmlSchemaComplexContentExtension) 826CompileComplexContentExtension(complexType, complexContent, (XmlSchemaComplexContentExtension)complexContent.Content); 830CompileComplexContentRestriction(complexType, complexContent, (XmlSchemaComplexContentRestriction)complexContent.Content!);
System\Xml\Schema\XmlSchemaComplexType.cs (2)
358XmlSchemaComplexContentExtension? complexExt = complexContent.Content as XmlSchemaComplexContentExtension; 372XmlSchemaComplexContentRestriction complexRest = (complexContent.Content as XmlSchemaComplexContentRestriction)!;
System\Xml\Schema\XsdBuilder.cs (1)
1667if (builder._complexContent!.Content != null)
System\Xml\Serialization\SchemaObjectWriter.cs (4)
910if (o.@Content is XmlSchemaComplexContentRestriction) 912Write56_XmlSchemaComplexContentRestriction((XmlSchemaComplexContentRestriction)o.@Content); 914else if (o.@Content is XmlSchemaComplexContentExtension) 916Write42_XmlSchemaComplexContentExtension((XmlSchemaComplexContentExtension)o.@Content);
System.Web.Services.Description (6)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (6)
4112if (o.@Content is global::System.Xml.Schema.XmlSchemaComplexContentRestriction) { 4113Write57_Item(@"restriction", @"http://www.w3.org/2001/XMLSchema", ((global::System.Xml.Schema.XmlSchemaComplexContentRestriction)o.@Content), false, false); 4115else if (o.@Content is global::System.Xml.Schema.XmlSchemaComplexContentExtension) { 4116Write56_Item(@"extension", @"http://www.w3.org/2001/XMLSchema", ((global::System.Xml.Schema.XmlSchemaComplexContentExtension)o.@Content), false, false); 4119if (o.@Content != null) { 4120throw CreateUnknownTypeException(o.@Content);