1 write to contentModel
System.Xml (1)
System\Xml\Schema\XmlSchemaComplexType.cs (1)
182
set {
contentModel
= value; }
10 references to contentModel
System.Xml (10)
System\Xml\Schema\XmlSchemaComplexType.cs (10)
181
get { return
contentModel
; }
316
if (
contentModel
== null) {
320
if (
contentModel
.Content is XmlSchemaComplexContentRestriction)
321
return ((XmlSchemaComplexContentRestriction)
contentModel
.Content).BaseTypeName;
322
else if (
contentModel
.Content is XmlSchemaComplexContentExtension)
323
return ((XmlSchemaComplexContentExtension)
contentModel
.Content).BaseTypeName;
324
else if (
contentModel
.Content is XmlSchemaSimpleContentRestriction)
325
return ((XmlSchemaSimpleContentRestriction)
contentModel
.Content).BaseTypeName;
326
else if (
contentModel
.Content is XmlSchemaSimpleContentExtension)
327
return ((XmlSchemaSimpleContentExtension)
contentModel
.Content).BaseTypeName;