11 references to HasRequiredAttribute
System.Xml (11)
System\Xml\Schema\DtdValidator.cs (3)
147if ( context.ElementDecl.HasRequiredAttribute ) { 158if (context.ElementDecl != null && context.ElementDecl.HasRequiredAttribute) { 183if (context.ElementDecl.HasRequiredAttribute) {
System\Xml\Schema\XdrValidator.cs (3)
210if (this.context.ElementDecl.HasRequiredAttribute) { 225if (context.ElementDecl != null && context.ElementDecl.HasRequiredAttribute) { 253if (context.ElementDecl.HasRequiredAttribute) {
System\Xml\Schema\XmlSchemaValidator.cs (2)
653if (currentElementDecl != null && currentElementDecl.HasRequiredAttribute) { 1020if (context.CheckRequiredAttribute && contextElementDecl.HasRequiredAttribute) {
System\Xml\Schema\XsdValidator.cs (3)
385if (this.context.ElementDecl.HasRequiredAttribute || HasIdentityConstraints) { 406if (context.ElementDecl != null && (context.ElementDecl.HasRequiredAttribute || this.startIDConstraint != -1)) { 455if (context.ElementDecl.HasRequiredAttribute) {