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