1 override of IsEmptiable
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\schema\ContentValidator.cs (1)
2281public override bool IsEmptiable
7 references to IsEmptiable
dotnet-svcutil-lib (7)
FrameworkFork\Microsoft.Xml\Xml\schema\ContentValidator.cs (1)
2283get { return base.IsEmptiable || _countRequired == 0; }
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (3)
867else if (baseType.ContentType == XmlSchemaContentType.Mixed && baseType.ElementDecl.ContentValidator.IsEmptiable) 1022if (baseType.ElementDecl != null && !baseType.ElementDecl.ContentValidator.IsEmptiable) 2390else if (decl.ContentValidator.ContentType != XmlSchemaContentType.Mixed || !decl.ContentValidator.IsEmptiable)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (3)
945else if (baseType.ContentType == XmlSchemaContentType.Mixed && baseType.ElementDecl.ContentValidator.IsEmptiable) 1090if (baseType.ElementDecl != null && !baseType.ElementDecl.ContentValidator.IsEmptiable) 2805if (decl.ContentValidator.ContentType == XmlSchemaContentType.TextOnly || (decl.ContentValidator.ContentType == XmlSchemaContentType.Mixed && decl.ContentValidator.IsEmptiable))