Base:
property
Content
System.Xml.Schema.XmlSchemaContentModel.Content
9 writes to Content
System.Private.Xml (9)
System\Xml\Schema\Inference\Infer.cs (3)
721
sc.
Content
= sce;
818
sc.
Content
= sce;
1246
sc.
Content
= sce;
System\Xml\Schema\XmlSchemaComplexType.cs (2)
340
newSimpleContent.
Content
= newSimpleExt;
348
newSimpleContent.
Content
= newSimpleRest;
System\Xml\Schema\XsdBuilder.cs (2)
1734
builder._simpleContent.
Content
= builder._simpleContentExtension;
1758
builder._simpleContent.
Content
= builder._simpleContentRestriction;
System\Xml\Serialization\XmlSchemaExporter.cs (2)
997
model.
Content
= extension;
1101
model.
Content
= ex;
37 references to Content
System.Data.Common (2)
System\Data\XMLSchema.cs (2)
607
XmlSchemaAnnotated? cContent = ((XmlSchemaSimpleContent)(ct.ContentModel)).
Content
;
1103
XmlSchemaAnnotated cContent = ((XmlSchemaSimpleContent)(ct.ContentModel)).
Content
!;
System.Private.Xml (35)
System\Xml\Schema\Inference\Infer.cs (1)
986
XmlSchemaSimpleContentExtension? sce = sc.
Content
as XmlSchemaSimpleContentExtension;
System\Xml\Schema\Preprocessor.cs (8)
1128
if (content.
Content
is XmlSchemaSimpleContentRestriction)
1130
baseName = ((XmlSchemaSimpleContentRestriction)content.
Content
).BaseTypeName;
1134
baseName = ((XmlSchemaSimpleContentExtension)content.
Content
!).BaseTypeName;
1708
if (content.
Content
== null)
1721
SetParent(content.
Content
, content); //simplecontent extension / restriction
1722
PreprocessAnnotation(content.
Content
); //annotation child of simple extension / restriction
1724
if (content.
Content
is XmlSchemaSimpleContentExtension contentExtension)
1739
XmlSchemaSimpleContentRestriction contentRestriction = (XmlSchemaSimpleContentRestriction)content.
Content
;
System\Xml\Schema\SchemaCollectionCompiler.cs (5)
334
if (simpleContent.
Content
is XmlSchemaSimpleContentExtension simpleExtension)
340
XmlSchemaSimpleContentRestriction simpleRestriction = (XmlSchemaSimpleContentRestriction)simpleContent.
Content
!;
721
if (simpleContent.
Content
is XmlSchemaSimpleContentExtension)
723
CompileSimpleContentExtension(complexType, (XmlSchemaSimpleContentExtension)simpleContent.
Content
);
727
CompileSimpleContentRestriction(complexType, (XmlSchemaSimpleContentRestriction)simpleContent.
Content
!);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (8)
804
if (content.
Content
is XmlSchemaSimpleContentRestriction)
806
baseName = ((XmlSchemaSimpleContentRestriction)content.
Content
).BaseTypeName;
810
baseName = ((XmlSchemaSimpleContentExtension)content.
Content
!).BaseTypeName;
1373
if (content.
Content
== null)
1386
SetParent(content.
Content
, content); //simplecontent extension / restriction
1387
PreprocessAnnotation(content.
Content
); //annotation child of simple extension / restriction
1389
if (content.
Content
is XmlSchemaSimpleContentExtension contentExtension)
1404
XmlSchemaSimpleContentRestriction contentRestriction = (XmlSchemaSimpleContentRestriction)content.
Content
;
System\Xml\Schema\SchemaSetCompiler.cs (5)
323
if (simpleContent.
Content
is XmlSchemaSimpleContentExtension simpleExtension)
329
XmlSchemaSimpleContentRestriction simpleRestriction = (XmlSchemaSimpleContentRestriction)simpleContent.
Content
!;
812
if (simpleContent.
Content
is XmlSchemaSimpleContentExtension)
814
CompileSimpleContentExtension(complexType, (XmlSchemaSimpleContentExtension)simpleContent.
Content
);
818
CompileSimpleContentRestriction(complexType, (XmlSchemaSimpleContentRestriction)simpleContent.
Content
!);
System\Xml\Schema\XmlSchemaComplexType.cs (2)
334
XmlSchemaSimpleContentExtension? simpleExt = simpleContent.
Content
as XmlSchemaSimpleContentExtension;
344
XmlSchemaSimpleContentRestriction simpleRest = (XmlSchemaSimpleContentRestriction)simpleContent.
Content
!;
System\Xml\Schema\XsdBuilder.cs (2)
1729
if (builder._simpleContent!.
Content
!= null)
1753
if (builder._simpleContent!.
Content
!= null)
System\Xml\Serialization\SchemaObjectWriter.cs (4)
855
if (o.
@Content
is XmlSchemaSimpleContentRestriction)
857
Write40_XmlSchemaSimpleContentRestriction((XmlSchemaSimpleContentRestriction)o.
@Content
);
859
else if (o.
@Content
is XmlSchemaSimpleContentExtension)
861
Write38_XmlSchemaSimpleContentExtension((XmlSchemaSimpleContentExtension)o.
@Content
);