Base:
property
Content
Microsoft.Xml.Schema.XmlSchemaContentModel.Content
11 writes to Content
dotnet-svcutil-lib (11)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (3)
739sc.Content = sce; 836sc.Content = sce; 1269sc.Content = sce;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (2)
430newSimpleContent.Content = newSimpleExt; 438newSimpleContent.Content = newSimpleRest;
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (2)
1739builder._simpleContent.Content = builder._simpleContentExtension; 1763builder._simpleContent.Content = builder._simpleContentRestriction;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (2)
1040model.Content = extension; 1144model.Content = ex;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (2)
11995o.@Content = Read59_Item(false, true); 12000o.@Content = Read60_Item(false, true);
45 references to Content
dotnet-svcutil-lib (45)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (1)
1005XmlSchemaSimpleContentExtension sce = sc.Content as XmlSchemaSimpleContentExtension;
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (9)
1163if (content.Content is XmlSchemaSimpleContentRestriction) 1165baseName = ((XmlSchemaSimpleContentRestriction)content.Content).BaseTypeName; 1169baseName = ((XmlSchemaSimpleContentExtension)content.Content).BaseTypeName; 1742if (content.Content == null) 1755SetParent(content.Content, content); //simplecontent extension / restriction 1756PreprocessAnnotation(content.Content); //annotation child of simple extension / restriction 1758if (content.Content is XmlSchemaSimpleContentExtension) 1760XmlSchemaSimpleContentExtension contentExtension = (XmlSchemaSimpleContentExtension)content.Content; 1774XmlSchemaSimpleContentRestriction contentRestriction = (XmlSchemaSimpleContentRestriction)content.Content;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (6)
322if (simpleContent.Content is XmlSchemaSimpleContentExtension) 324XmlSchemaSimpleContentExtension simpleExtension = (XmlSchemaSimpleContentExtension)simpleContent.Content; 329XmlSchemaSimpleContentRestriction simpleRestriction = (XmlSchemaSimpleContentRestriction)simpleContent.Content; 712if (simpleContent.Content is XmlSchemaSimpleContentExtension) 714CompileSimpleContentExtension(complexType, (XmlSchemaSimpleContentExtension)simpleContent.Content); 718CompileSimpleContentRestriction(complexType, (XmlSchemaSimpleContentRestriction)simpleContent.Content);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (9)
812if (content.Content is XmlSchemaSimpleContentRestriction) 814baseName = ((XmlSchemaSimpleContentRestriction)content.Content).BaseTypeName; 818baseName = ((XmlSchemaSimpleContentExtension)content.Content).BaseTypeName; 1385if (content.Content == null) 1398SetParent(content.Content, content); //simplecontent extension / restriction 1399PreprocessAnnotation(content.Content); //annotation child of simple extension / restriction 1401if (content.Content is XmlSchemaSimpleContentExtension) 1403XmlSchemaSimpleContentExtension contentExtension = (XmlSchemaSimpleContentExtension)content.Content; 1417XmlSchemaSimpleContentRestriction contentRestriction = (XmlSchemaSimpleContentRestriction)content.Content;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (6)
308if (simpleContent.Content is XmlSchemaSimpleContentExtension) 310XmlSchemaSimpleContentExtension simpleExtension = (XmlSchemaSimpleContentExtension)simpleContent.Content; 315XmlSchemaSimpleContentRestriction simpleRestriction = (XmlSchemaSimpleContentRestriction)simpleContent.Content; 799if (simpleContent.Content is XmlSchemaSimpleContentExtension) 801CompileSimpleContentExtension(complexType, (XmlSchemaSimpleContentExtension)simpleContent.Content); 805CompileSimpleContentRestriction(complexType, (XmlSchemaSimpleContentRestriction)simpleContent.Content);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (2)
424XmlSchemaSimpleContentExtension simpleExt = simpleContent.Content as XmlSchemaSimpleContentExtension; 434XmlSchemaSimpleContentRestriction simpleRest = (XmlSchemaSimpleContentRestriction)simpleContent.Content;
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (2)
1734if (builder._simpleContent.Content != null) 1758if (builder._simpleContent.Content != null)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (4)
856if (o.@Content is XmlSchemaSimpleContentRestriction) 858Write40_XmlSchemaSimpleContentRestriction((XmlSchemaSimpleContentRestriction)o.@Content); 860else if (o.@Content is XmlSchemaSimpleContentExtension) 862Write38_XmlSchemaSimpleContentExtension((XmlSchemaSimpleContentExtension)o.@Content);
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (6)
4638if (o.@Content is Microsoft.Xml.Schema.XmlSchemaSimpleContentExtension) 4640Write60_Item(@"extension", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.XmlSchemaSimpleContentExtension)o.@Content), false, false); 4642else if (o.@Content is Microsoft.Xml.Schema.XmlSchemaSimpleContentRestriction) 4644Write59_Item(@"restriction", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.XmlSchemaSimpleContentRestriction)o.@Content), false, false); 4648if (o.@Content != null) 4650throw CreateUnknownTypeException(o.@Content);