Base:
property
IsMixed
System.Xml.Schema.XmlSchemaType.IsMixed
18 writes to @IsMixed
System.Runtime.Serialization (2)
System\Runtime\Serialization\SchemaExporter.cs (2)
726
anyType.
IsMixed
= true;
740
anyElementType.
IsMixed
= false;
System.Web.Services (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
9166
o.
@IsMixed
= System.Xml.XmlConvert.ToBoolean(Reader.Value);
System.Xml (15)
System\Xml\Schema\Inference\Infer.cs (5)
745
ct.
IsMixed
= true;
794
ct.
IsMixed
= true;
923
ct.
IsMixed
=true;
932
ct.
IsMixed
= true;
965
ct.
IsMixed
= true;
System\Xml\Schema\XmlSchemaComplexType.cs (1)
50
untypedAnyType.
IsMixed
= true;
System\Xml\Schema\XsdBuilder.cs (1)
1511
builder.complexType.
IsMixed
= builder.ParseBoolean(value, "mixed");
System\Xml\Serialization\XmlSchemaExporter.cs (8)
160
type.
IsMixed
= true;
202
type.
IsMixed
= isMixed;
397
type.
IsMixed
= mapping.TypeDesc.IsMixed;
402
type.
IsMixed
= true;
415
type.
IsMixed
= mapping.TypeDesc.IsMixed;
420
type.
IsMixed
= true;
963
type.
IsMixed
= true;
979
type.
IsMixed
= true;
12 references to @IsMixed
System.Runtime.Serialization (1)
System\Runtime\Serialization\SchemaImporter.cs (1)
1362
if (type.
IsMixed
)
System.ServiceModel.Web (1)
System\ServiceModel\Dispatcher\HelpExampleGenerator.cs (1)
272
if (complexType.
IsMixed
)
System.Web.Services (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
3138
if (((global::System.Boolean)o.
@IsMixed
) != false) {
3139
WriteAttribute(@"mixed", @"", System.Xml.XmlConvert.ToString((global::System.Boolean)((global::System.Boolean)o.
@IsMixed
)));
System.Xml (8)
System\Xml\Schema\Preprocessor.cs (1)
1467
if ( !content.HasMixedAttribute && complexType.
IsMixed
) {
System\Xml\Schema\SchemaCollectionCompiler.cs (1)
1351
(complexContent == null && complexType.
IsMixed
)) {
System\Xml\Schema\SchemaCollectionpreProcessor.cs (1)
1153
if ( !content.HasMixedAttribute && complexType.
IsMixed
) {
System\Xml\Schema\SchemaSetCompiler.cs (1)
1625
(complexContent == null && complexType.
IsMixed
)) {
System\Xml\Serialization\SchemaObjectWriter.cs (2)
675
if (((System.Boolean)o.
@IsMixed
) != false) {
676
WriteAttribute(@"mixed", @"", XmlConvert.ToString((System.Boolean)((System.Boolean)o.
@IsMixed
)));
System\Xml\Serialization\XmlSchemaExporter.cs (1)
128
if (complexType.
IsMixed
!= mixed)
System\Xml\Serialization\XmlSchemaImporter.cs (1)
698
bool mixed = ct.
IsMixed
;