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