22 references to ContentType
dotnet-svcutil-lib (22)
FrameworkFork\Microsoft.Xml\Xml\schema\basevalidator.cs (2)
175
XmlSchemaContentType contentType = contentValidator.
ContentType
;
204
XmlSchemaContentType contentType = context.ElementDecl.ContentValidator.
ContentType
;
FrameworkFork\Microsoft.Xml\Xml\schema\ContentValidator.cs (6)
1318
Debug.Assert(
ContentType
== XmlSchemaContentType.ElementOnly ||
ContentType
== XmlSchemaContentType.Mixed);
1321
if (
ContentType
== XmlSchemaContentType.Mixed)
1381
return new RangeContentValidator(firstpos, followpos, _symbols, _positions, endMarker.Pos, this.
ContentType
, contentRoot.LeftChild.IsNullable, positionsWithRangeTerminals, _minMaxNodesCount);
1407
return new DfaContentValidator(transitionTable, _symbols, this.
ContentType
, this.IsOpen, contentRoot.LeftChild.IsNullable);
1411
return new NfaContentValidator(firstpos, followpos, _symbols, _positions, endMarker.Pos, this.
ContentType
, this.IsOpen, contentRoot.LeftChild.IsNullable);
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (1)
806
elementDecl.ContentValidator.
ContentType
== XmlSchemaContentType.Empty &&
FrameworkFork\Microsoft.Xml\Xml\schema\dtdvalidator.cs (1)
108
context.ElementDecl.ContentValidator.
ContentType
== XmlSchemaContentType.ElementOnly)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (2)
2373
if (decl.ContentValidator.
ContentType
== XmlSchemaContentType.TextOnly)
2390
else if (decl.ContentValidator.
ContentType
!= XmlSchemaContentType.Mixed || !decl.ContentValidator.IsEmptiable)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (2)
2805
if (decl.ContentValidator.
ContentType
== XmlSchemaContentType.TextOnly || (decl.ContentValidator.
ContentType
== XmlSchemaContentType.Mixed && decl.ContentValidator.IsEmptiable))
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (8)
797
XmlSchemaContentType contentType = _context.ElementDecl.ContentValidator.
ContentType
;
879
XmlSchemaContentType contentType = _context.ElementDecl.ContentValidator.
ContentType
;
1150
return _context.ElementDecl.ContentValidator.
ContentType
;
1222
XmlSchemaContentType contentType = contextElementDecl.ContentValidator.
ContentType
;
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)
2531
XmlSchemaContentType contentType = contentValidator.
ContentType
;