Base:
property
Content
System.Xml.Schema.XmlSchemaContentModel.Content
11 writes to @Content
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\SchemaUtility.cs (1)
233complexContent.Content = contentRestriction;
System.Web.Services (3)
System\Web\Services\Description\HttpProtocolReflector.cs (1)
97model.Content = restriction;
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
9978o.@Content = Read56_Item(false, true); 9982o.@Content = Read57_Item(false, true);
System.Xml (7)
System\Xml\Schema\XmlSchemaComplexType.cs (2)
397newComplexContent.Content = newComplexExt; 407newComplexContent.Content = newComplexRest;
System\Xml\Schema\XsdBuilder.cs (2)
1553builder.complexContent.Content = builder.complexContentExtension; 1570builder.complexContent.Content = builder.complexContentRestriction;
System\Xml\Serialization\SoapSchemaExporter.cs (2)
228model.Content = restriction; 292model.Content = extension;
System\Xml\Serialization\XmlSchemaExporter.cs (1)
894model.Content = extension;
56 references to @Content
System.Data (2)
fx\src\data\System\Data\XMLSchema.cs (2)
894XmlSchemaAnnotated cContent = ((XmlSchemaComplexContent) (ct.ContentModel)).Content; 968XmlSchemaAnnotated cContent = ((XmlSchemaComplexContent) (ct.ContentModel)).Content;
System.Runtime.Serialization (5)
System\Runtime\Serialization\SchemaImporter.cs (5)
326XmlSchemaComplexContentExtension extension = complexContent.Content as XmlSchemaComplexContentExtension; 470if (complexContent.Content is XmlSchemaComplexContentExtension) 472XmlSchemaComplexContentExtension extension = (XmlSchemaComplexContentExtension)complexContent.Content; 475else if (complexContent.Content is XmlSchemaComplexContentRestriction) 477XmlSchemaComplexContentRestriction restriction = (XmlSchemaComplexContentRestriction)complexContent.Content;
System.Web.Services (6)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (6)
3491if (o.@Content is global::System.Xml.Schema.XmlSchemaComplexContentRestriction) { 3492Write57_Item(@"restriction", @"http://www.w3.org/2001/XMLSchema", ((global::System.Xml.Schema.XmlSchemaComplexContentRestriction)o.@Content), false, false); 3494else if (o.@Content is global::System.Xml.Schema.XmlSchemaComplexContentExtension) { 3495Write56_Item(@"extension", @"http://www.w3.org/2001/XMLSchema", ((global::System.Xml.Schema.XmlSchemaComplexContentExtension)o.@Content), false, false); 3498if (o.@Content != null) { 3499throw CreateUnknownTypeException(o.@Content);
System.Xml (43)
System\Xml\Schema\Preprocessor.cs (9)
953if (content.Content is XmlSchemaComplexContentRestriction) { 954baseName = ((XmlSchemaComplexContentRestriction)content.Content).BaseTypeName; 957baseName = ((XmlSchemaComplexContentExtension)content.Content).BaseTypeName; 1458if (content.Content == null) { 1470SetParent(content.Content, content); //complexcontent extension / restriction 1471PreprocessAnnotation(content.Content); //Annotation child of extension / restriction 1473if (content.Content is XmlSchemaComplexContentExtension) { 1474XmlSchemaComplexContentExtension contentExtension = (XmlSchemaComplexContentExtension)content.Content; 1489XmlSchemaComplexContentRestriction contentRestriction = (XmlSchemaComplexContentRestriction)content.Content;
System\Xml\Schema\SchemaCollectionCompiler.cs (6)
270if (complexContent.Content is XmlSchemaComplexContentExtension) { 271XmlSchemaComplexContentExtension complexExtension = (XmlSchemaComplexContentExtension)complexContent.Content; 277XmlSchemaComplexContentRestriction complexRestriction = (XmlSchemaComplexContentRestriction)complexContent.Content; 578if (complexContent.Content is XmlSchemaComplexContentExtension) { 579CompileComplexContentExtension(complexType, complexContent, (XmlSchemaComplexContentExtension)complexContent.Content); 582CompileComplexContentRestriction(complexType, complexContent, (XmlSchemaComplexContentRestriction)complexContent.Content);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (9)
645if (content.Content is XmlSchemaComplexContentRestriction) { 646baseName = ((XmlSchemaComplexContentRestriction)content.Content).BaseTypeName; 649baseName = ((XmlSchemaComplexContentExtension)content.Content).BaseTypeName; 1144if (content.Content == null) { 1156SetParent(content.Content, content); //complexcontent extension / restriction 1157PreprocessAnnotation(content.Content); //Annotation child of extension / restriction 1159if (content.Content is XmlSchemaComplexContentExtension) { 1160XmlSchemaComplexContentExtension contentExtension = (XmlSchemaComplexContentExtension)content.Content; 1175XmlSchemaComplexContentRestriction contentRestriction = (XmlSchemaComplexContentRestriction)content.Content;
System\Xml\Schema\SchemaSetCompiler.cs (6)
258if (complexContent.Content is XmlSchemaComplexContentExtension) { 259XmlSchemaComplexContentExtension complexExtension = (XmlSchemaComplexContentExtension)complexContent.Content; 265XmlSchemaComplexContentRestriction complexRestriction = (XmlSchemaComplexContentRestriction)complexContent.Content; 646if (complexContent.Content is XmlSchemaComplexContentExtension) { 647CompileComplexContentExtension(complexType, complexContent, (XmlSchemaComplexContentExtension)complexContent.Content); 650CompileComplexContentRestriction(complexType, complexContent, (XmlSchemaComplexContentRestriction)complexContent.Content);
System\Xml\Schema\XmlSchemaComplexType.cs (2)
389XmlSchemaComplexContentExtension complexExt = complexContent.Content as XmlSchemaComplexContentExtension; 400XmlSchemaComplexContentRestriction complexRest = complexContent.Content as XmlSchemaComplexContentRestriction;
System\Xml\Schema\XsdBuilder.cs (1)
1549if (builder.complexContent.Content != null) {
System\Xml\Serialization\SchemaObjectWriter.cs (4)
758if (o.@Content is XmlSchemaComplexContentRestriction) { 759Write56_XmlSchemaComplexContentRestriction((XmlSchemaComplexContentRestriction)o.@Content); 761else if (o.@Content is XmlSchemaComplexContentExtension) { 762Write42_XmlSchemaComplexContentExtension((XmlSchemaComplexContentExtension)o.@Content);
System\Xml\Serialization\SoapSchemaImporter.cs (6)
336if (model.Content is XmlSchemaComplexContentExtension) { 337if (((XmlSchemaComplexContentExtension)model.Content).Particle != null) { 338ImportGroup(((XmlSchemaComplexContentExtension)model.Content).Particle, members, typeNs); 341else if (model.Content is XmlSchemaComplexContentRestriction) { 342if (((XmlSchemaComplexContentRestriction)model.Content).Particle != null) { 343ImportGroup(((XmlSchemaComplexContentRestriction)model.Content).Particle, members, typeNs);