Base:
property
IsMixed
System.Xml.Schema.XmlSchemaType.IsMixed
18 writes to IsMixed
System.Private.DataContractSerialization (2)
System\Runtime\Serialization\SchemaExporter.cs (2)
724
anyType.
IsMixed
= true;
738
anyElementType.
IsMixed
= false;
System.Private.Xml (15)
System\Xml\Schema\Inference\Infer.cs (5)
729
ct.
IsMixed
= true;
778
ct.
IsMixed
= true;
907
ct.
IsMixed
= true;
916
ct.
IsMixed
= true;
948
ct.
IsMixed
= true;
System\Xml\Schema\XmlSchemaComplexType.cs (1)
43
untypedAny.
IsMixed
= true;
System\Xml\Schema\XsdBuilder.cs (1)
1624
builder._complexType!.
IsMixed
= builder.ParseBoolean(value, "mixed");
System\Xml\Serialization\XmlSchemaExporter.cs (8)
155
type.
IsMixed
= true;
200
type.
IsMixed
= isMixed;
419
type.
IsMixed
= mapping.TypeDesc.IsMixed;
425
type.
IsMixed
= true;
440
type.
IsMixed
= mapping.TypeDesc.IsMixed;
446
type.
IsMixed
= true;
1090
type.
IsMixed
= true;
1109
type.
IsMixed
= true;
System.Web.Services.Description (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
11268
o.
@IsMixed
= Xml.XmlConvert.ToBoolean(Reader.Value);
11 references to IsMixed
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\SchemaImporter.cs (1)
1349
if (type.
IsMixed
)
System.Private.Xml (8)
System\Xml\Schema\Preprocessor.cs (1)
1775
if (!content.HasMixedAttribute && complexType.
IsMixed
)
System\Xml\Schema\SchemaCollectionCompiler.cs (1)
1700
(complexContent == null && complexType.
IsMixed
))
System\Xml\Schema\SchemaCollectionpreProcessor.cs (1)
1440
if (!content.HasMixedAttribute && complexType.
IsMixed
)
System\Xml\Schema\SchemaSetCompiler.cs (1)
2051
(complexContent == null && complexType.
IsMixed
))
System\Xml\Serialization\SchemaObjectWriter.cs (2)
812
if ((bool)o.
@IsMixed
)
814
WriteAttribute(@"mixed", @"", XmlConvert.ToString((bool)(bool)o.
@IsMixed
));
System\Xml\Serialization\XmlSchemaExporter.cs (1)
120
if (complexType.
IsMixed
!= mixed)
System\Xml\Serialization\XmlSchemaImporter.cs (1)
674
bool mixed = ct.
IsMixed
;
System.Web.Services.Description (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
3703
if (((global::System.Boolean)o.
@IsMixed
) != false) {
3704
WriteAttribute(@"mixed", @"", Xml.XmlConvert.ToString((global::System.Boolean)((global::System.Boolean)o.
@IsMixed
)));