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