4 writes to IsMixed
System.Private.Xml (4)
System\Xml\Schema\Preprocessor.cs (1)
1777content.IsMixed = true; // fixup
System\Xml\Schema\SchemaCollectionpreProcessor.cs (1)
1442content.IsMixed = true; // fixup
System\Xml\Schema\XsdBuilder.cs (1)
1654builder._complexContent!.IsMixed = builder.ParseBoolean(value, "mixed");
System\Xml\Serialization\XmlSchemaExporter.cs (1)
1006model.IsMixed = XmlSchemaImporter.IsMixed((XmlSchemaComplexType)_types[mapping.BaseMapping]!);
5 references to IsMixed
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\SchemaImporter.cs (1)
461if (complexContent.IsMixed)
System.Private.Xml (4)
System\Xml\Schema\SchemaCollectionCompiler.cs (1)
1699if ((complexContent != null && complexContent.IsMixed) ||
System\Xml\Schema\SchemaSetCompiler.cs (1)
2050if ((complexContent != null && complexContent.IsMixed) ||
System\Xml\Serialization\SchemaObjectWriter.cs (1)
907WriteAttribute(@"mixed", @"", XmlConvert.ToString((bool)((bool)o.@IsMixed)));
System\Xml\Serialization\XmlSchemaImporter.cs (1)
704mixed = ((XmlSchemaComplexContent)ct.ContentModel).IsMixed;