15 references to Strict
System.Web.Services (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
2198
case global::System.Xml.Schema.XmlSchemaContentProcessing.
@Strict
: s = @"strict"; break;
7274
case @"strict": return global::System.Xml.Schema.XmlSchemaContentProcessing.
@Strict
;
System.Xml (13)
System\Xml\Schema\XmlSchemaAny.cs (1)
60
get { return processContents == XmlSchemaContentProcessing.None ? XmlSchemaContentProcessing.
Strict
: processContents; }
System\Xml\Schema\XmlSchemaAnyAttribute.cs (1)
51
get { return processContents == XmlSchemaContentProcessing.None ? XmlSchemaContentProcessing.
Strict
: processContents; }
System\Xml\Schema\XmlSchemaValidator.cs (5)
122
private XmlSchemaContentProcessing processContents = XmlSchemaContentProcessing.
Strict
;
502
&& processContents == XmlSchemaContentProcessing.
Strict
986
return (processContents == XmlSchemaContentProcessing.
Strict
|| processContents == XmlSchemaContentProcessing.Lax) && context.ElementDecl != null && !context.ValidationSkipped;
1418
if (HasSchema && processContents == XmlSchemaContentProcessing.
Strict
) {
1466
else if (HasSchema && processContents == XmlSchemaContentProcessing.
Strict
) { //Error and skip validation for children
System\Xml\Schema\XsdValidator.cs (3)
68
processContents = XmlSchemaContentProcessing.
Strict
;
200
if (HasSchema && processContents == XmlSchemaContentProcessing.
Strict
) {
423
&& processContents == XmlSchemaContentProcessing.
Strict
System\Xml\Serialization\SchemaObjectWriter.cs (3)
646
XmlSchemaContentProcessing process = o.@ProcessContents == XmlSchemaContentProcessing.@None ? XmlSchemaContentProcessing.
Strict
: o.@ProcessContents;
658
case XmlSchemaContentProcessing.
@Strict
:s = @"strict"; break;
966
XmlSchemaContentProcessing process = o.@ProcessContents == XmlSchemaContentProcessing.@None ? XmlSchemaContentProcessing.
Strict
: o.@ProcessContents;