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