15 references to Strict
System.Private.Xml (13)
System\Xml\Schema\XmlSchemaAny.cs (1)
52
get { return _processContents == XmlSchemaContentProcessing.None ? XmlSchemaContentProcessing.
Strict
: _processContents; }
System\Xml\Schema\XmlSchemaAnyAttribute.cs (1)
40
get { return _processContents == XmlSchemaContentProcessing.None ? XmlSchemaContentProcessing.
Strict
: _processContents; }
System\Xml\Schema\XmlSchemaValidator.cs (5)
123
private XmlSchemaContentProcessing _processContents = XmlSchemaContentProcessing.
Strict
;
537
&& _processContents == XmlSchemaContentProcessing.
Strict
1130
return (_processContents == XmlSchemaContentProcessing.
Strict
|| _processContents == XmlSchemaContentProcessing.Lax) && _context.ElementDecl != null && !_context.ValidationSkipped;
1676
if (HasSchema && _processContents == XmlSchemaContentProcessing.
Strict
)
1732
else if (HasSchema && _processContents == XmlSchemaContentProcessing.
Strict
)
System\Xml\Schema\XsdValidator.cs (3)
82
_processContents = XmlSchemaContentProcessing.
Strict
;
231
if (HasSchema && _processContents == XmlSchemaContentProcessing.
Strict
)
510
&& _processContents == XmlSchemaContentProcessing.
Strict
System\Xml\Serialization\SchemaObjectWriter.cs (3)
779
XmlSchemaContentProcessing process = o.@ProcessContents == XmlSchemaContentProcessing.@None ? XmlSchemaContentProcessing.
Strict
: o.@ProcessContents;
793
case XmlSchemaContentProcessing.
@Strict
: s = @"strict"; break;
1152
XmlSchemaContentProcessing process = o.@ProcessContents == XmlSchemaContentProcessing.@None ? XmlSchemaContentProcessing.
Strict
: o.@ProcessContents;
System.Web.Services.Description (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
2583
case Xml.Schema.XmlSchemaContentProcessing.
@Strict
: s = @"strict"; break;
8957
case @"strict": return Xml.Schema.XmlSchemaContentProcessing.
@Strict
;