26 references to Mixed
dotnet-svcutil-lib (26)
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReader.cs (1)
236if (nodeType == XmlNodeType.Whitespace && (_validator.CurrentContentType == XmlSchemaContentType.TextOnly || _validator.CurrentContentType == XmlSchemaContentType.Mixed))
FrameworkFork\Microsoft.Xml\Xml\schema\ContentValidator.cs (5)
1014public static readonly ContentValidator Mixed = new ContentValidator(XmlSchemaContentType.Mixed); 1015public static readonly ContentValidator Any = new ContentValidator(XmlSchemaContentType.Mixed, true, true); 1037get { return _contentType == XmlSchemaContentType.TextOnly || _contentType == XmlSchemaContentType.Mixed; } 1318Debug.Assert(ContentType == XmlSchemaContentType.ElementOnly || ContentType == XmlSchemaContentType.Mixed); 1321if (ContentType == XmlSchemaContentType.Mixed)
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (1)
988ParticleContentValidator pcv = new ParticleContentValidator(XmlSchemaContentType.Mixed);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (3)
867else if (baseType.ContentType == XmlSchemaContentType.Mixed && baseType.ElementDecl.ContentValidator.IsEmptiable) 1704return XmlSchemaContentType.Mixed; 2390else if (decl.ContentValidator.ContentType != XmlSchemaContentType.Mixed || !decl.ContentValidator.IsEmptiable)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (5)
945else if (baseType.ContentType == XmlSchemaContentType.Mixed && baseType.ElementDecl.ContentValidator.IsEmptiable) 1096case XmlSchemaContentType.Mixed: 1097if (baseType.ContentType != XmlSchemaContentType.Mixed) 2039return XmlSchemaContentType.Mixed; 2805if (decl.ContentValidator.ContentType == XmlSchemaContentType.TextOnly || (decl.ContentValidator.ContentType == XmlSchemaContentType.Mixed && decl.ContentValidator.IsEmptiable))
FrameworkFork\Microsoft.Xml\Xml\schema\XdrBuilder.cs (1)
719builder._contentValidator = new ParticleContentValidator(XmlSchemaContentType.Mixed);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (3)
55s_untypedAnyType.SetContentType(XmlSchemaContentType.Mixed); 77localAnyType.SetContentType(XmlSchemaContentType.Mixed); 83ParticleContentValidator contentValidator = new ParticleContentValidator(XmlSchemaContentType.Mixed);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (7)
833case XmlSchemaContentType.Mixed: 897case XmlSchemaContentType.Mixed: 1237case XmlSchemaContentType.Mixed: 1347if (contentValidator.ContentType == XmlSchemaContentType.Mixed && _context.ElementDecl.Presence == SchemaDeclBase.Use.Fixed) 1837Debug.Assert(elementDecl.ContentValidator.ContentType == XmlSchemaContentType.Mixed && elementDecl.DefaultValueTyped != null); 2287if (currentElementDecl.Datatype == null || currentElementDecl.ContentValidator.ContentType == XmlSchemaContentType.Mixed) 2532if (contentType == XmlSchemaContentType.ElementOnly || (contentType == XmlSchemaContentType.Mixed && contentValidator != ContentValidator.Mixed && contentValidator != ContentValidator.Any))