Base:
property
Content
System.Xml.Schema.XmlSchemaContentModel.Content
13 writes to @Content
System.ServiceModel (1)
System\ServiceModel\Dispatcher\XPathMessageFilter.cs (1)
89
innerContent.
Content
= innerExt;
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\SchemaUtility.cs (1)
503
scopesTypeContent.
Content
= scopesTypeContentExtension;
System.Web.Services (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
9703
o.
@Content
= Read59_Item(false, true);
9707
o.
@Content
= Read60_Item(false, true);
System.Xml (9)
System\Xml\Schema\Inference\Infer.cs (3)
737
sc.
Content
= sce;
834
sc.
Content
= sce;
1260
sc.
Content
= sce;
System\Xml\Schema\XmlSchemaComplexType.cs (2)
373
newSimpleContent.
Content
= newSimpleExt;
380
newSimpleContent.
Content
= newSimpleRest;
System\Xml\Schema\XsdBuilder.cs (2)
1608
builder.simpleContent.
Content
= builder.simpleContentExtension;
1629
builder.simpleContent.
Content
= builder.simpleContentRestriction;
System\Xml\Serialization\XmlSchemaExporter.cs (2)
887
model.
Content
= extension;
972
model.
Content
= ex;
47 references to @Content
System.Data (2)
fx\src\data\System\Data\XMLSchema.cs (2)
529
XmlSchemaAnnotated cContent = ((XmlSchemaSimpleContent) (ct.ContentModel)).
Content
;
929
XmlSchemaAnnotated cContent = ((XmlSchemaSimpleContent) (ct.ContentModel)).
Content
;
System.Web.Services (6)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (6)
3678
if (o.
@Content
is global::System.Xml.Schema.XmlSchemaSimpleContentExtension) {
3679
Write60_Item(@"extension", @"http://www.w3.org/2001/XMLSchema", ((global::System.Xml.Schema.XmlSchemaSimpleContentExtension)o.
@Content
), false, false);
3681
else if (o.
@Content
is global::System.Xml.Schema.XmlSchemaSimpleContentRestriction) {
3682
Write59_Item(@"restriction", @"http://www.w3.org/2001/XMLSchema", ((global::System.Xml.Schema.XmlSchemaSimpleContentRestriction)o.
@Content
), false, false);
3685
if (o.
@Content
!= null) {
3686
throw CreateUnknownTypeException(o.
@Content
);
System.Xml (39)
System\Xml\Schema\Inference\Infer.cs (1)
1003
XmlSchemaSimpleContentExtension sce = sc.
Content
as XmlSchemaSimpleContentExtension;
System\Xml\Schema\Preprocessor.cs (9)
962
if (content.
Content
is XmlSchemaSimpleContentRestriction) {
963
baseName = ((XmlSchemaSimpleContentRestriction)content.
Content
).BaseTypeName;
966
baseName = ((XmlSchemaSimpleContentExtension)content.
Content
).BaseTypeName;
1415
if (content.
Content
== null) {
1424
SetParent(content.
Content
, content); //simplecontent extension / restriction
1425
PreprocessAnnotation(content.
Content
); //annotation child of simple extension / restriction
1427
if (content.
Content
is XmlSchemaSimpleContentExtension) {
1428
XmlSchemaSimpleContentExtension contentExtension = (XmlSchemaSimpleContentExtension)content.
Content
;
1439
XmlSchemaSimpleContentRestriction contentRestriction = (XmlSchemaSimpleContentRestriction)content.
Content
;
System\Xml\Schema\SchemaCollectionCompiler.cs (6)
259
if (simpleContent.
Content
is XmlSchemaSimpleContentExtension) {
260
XmlSchemaSimpleContentExtension simpleExtension = (XmlSchemaSimpleContentExtension)simpleContent.
Content
;
264
XmlSchemaSimpleContentRestriction simpleRestriction = (XmlSchemaSimpleContentRestriction)simpleContent.
Content
;
569
if (simpleContent.
Content
is XmlSchemaSimpleContentExtension) {
570
CompileSimpleContentExtension(complexType, (XmlSchemaSimpleContentExtension)simpleContent.
Content
);
573
CompileSimpleContentRestriction(complexType, (XmlSchemaSimpleContentRestriction)simpleContent.
Content
);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (9)
654
if (content.
Content
is XmlSchemaSimpleContentRestriction) {
655
baseName = ((XmlSchemaSimpleContentRestriction)content.
Content
).BaseTypeName;
658
baseName = ((XmlSchemaSimpleContentExtension)content.
Content
).BaseTypeName;
1101
if (content.
Content
== null) {
1110
SetParent(content.
Content
, content); //simplecontent extension / restriction
1111
PreprocessAnnotation(content.
Content
); //annotation child of simple extension / restriction
1113
if (content.
Content
is XmlSchemaSimpleContentExtension) {
1114
XmlSchemaSimpleContentExtension contentExtension = (XmlSchemaSimpleContentExtension)content.
Content
;
1125
XmlSchemaSimpleContentRestriction contentRestriction = (XmlSchemaSimpleContentRestriction)content.
Content
;
System\Xml\Schema\SchemaSetCompiler.cs (6)
247
if (simpleContent.
Content
is XmlSchemaSimpleContentExtension) {
248
XmlSchemaSimpleContentExtension simpleExtension = (XmlSchemaSimpleContentExtension)simpleContent.
Content
;
252
XmlSchemaSimpleContentRestriction simpleRestriction = (XmlSchemaSimpleContentRestriction)simpleContent.
Content
;
637
if (simpleContent.
Content
is XmlSchemaSimpleContentExtension) {
638
CompileSimpleContentExtension(complexType, (XmlSchemaSimpleContentExtension)simpleContent.
Content
);
641
CompileSimpleContentRestriction(complexType, (XmlSchemaSimpleContentRestriction)simpleContent.
Content
);
System\Xml\Schema\XmlSchemaComplexType.cs (2)
368
XmlSchemaSimpleContentExtension simpleExt = simpleContent.
Content
as XmlSchemaSimpleContentExtension;
376
XmlSchemaSimpleContentRestriction simpleRest = (XmlSchemaSimpleContentRestriction)simpleContent.
Content
;
System\Xml\Schema\XsdBuilder.cs (2)
1604
if (builder.simpleContent.
Content
!= null) {
1625
if (builder.simpleContent.
Content
!= null) {
System\Xml\Serialization\SchemaObjectWriter.cs (4)
710
if (o.
@Content
is XmlSchemaSimpleContentRestriction) {
711
Write40_XmlSchemaSimpleContentRestriction((XmlSchemaSimpleContentRestriction)o.
@Content
);
713
else if (o.
@Content
is XmlSchemaSimpleContentExtension) {
714
Write38_XmlSchemaSimpleContentExtension((XmlSchemaSimpleContentExtension)o.
@Content
);