91 references to XmlSchemaContentProcessing
System.Data (4)
fx\src\data\System\Data\DataSet.cs (2)
3303
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;
3309
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;
fx\src\data\System\Data\DataTable.cs (2)
5923
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;
5929
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;
System.Data.Services.Design (1)
System\Data\EntityModel\EntityClassGenerator.cs (1)
321
complexType.AnyAttribute.ProcessContents =
XmlSchemaContentProcessing
.Lax;
System.Runtime.Serialization (3)
System\Runtime\Serialization\SchemaExporter.cs (3)
731
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;
744
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;
871
iSerializableWildcardElement.ProcessContents =
XmlSchemaContentProcessing
.Skip;
System.ServiceModel.Discovery (8)
System\ServiceModel\Discovery\SchemaUtility.cs (8)
256
anyAttribue.ProcessContents =
XmlSchemaContentProcessing
.Lax;
299
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;
309
anyAttribue.ProcessContents =
XmlSchemaContentProcessing
.Lax;
354
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;
369
anyAttribue.ProcessContents =
XmlSchemaContentProcessing
.Lax;
400
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;
412
anyAttribue.ProcessContents =
XmlSchemaContentProcessing
.Lax;
496
anyAttribute.ProcessContents =
XmlSchemaContentProcessing
.Lax;
System.Web.Services (15)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (15)
2186
if (((global::System.Xml.Schema.
XmlSchemaContentProcessing
)o.@ProcessContents) != global::System.Xml.Schema.
XmlSchemaContentProcessing
.@None) {
2187
WriteAttribute(@"processContents", @"", Write38_XmlSchemaContentProcessing(((global::System.Xml.Schema.
XmlSchemaContentProcessing
)o.@ProcessContents)));
2193
string Write38_XmlSchemaContentProcessing(global::System.Xml.Schema.
XmlSchemaContentProcessing
v) {
2196
case global::System.Xml.Schema.
XmlSchemaContentProcessing
.@Skip: s = @"skip"; break;
2197
case global::System.Xml.Schema.
XmlSchemaContentProcessing
.@Lax: s = @"lax"; break;
2198
case global::System.Xml.Schema.
XmlSchemaContentProcessing
.@Strict: s = @"strict"; break;
3226
if (((global::System.Xml.Schema.
XmlSchemaContentProcessing
)o.@ProcessContents) != global::System.Xml.Schema.
XmlSchemaContentProcessing
.@None) {
3227
WriteAttribute(@"processContents", @"", Write38_XmlSchemaContentProcessing(((global::System.Xml.Schema.
XmlSchemaContentProcessing
)o.@ProcessContents)));
7270
global::System.Xml.Schema.
XmlSchemaContentProcessing
Read38_XmlSchemaContentProcessing(string s) {
7272
case @"skip": return global::System.Xml.Schema.
XmlSchemaContentProcessing
.@Skip;
7273
case @"lax": return global::System.Xml.Schema.
XmlSchemaContentProcessing
.@Lax;
7274
case @"strict": return global::System.Xml.Schema.
XmlSchemaContentProcessing
.@Strict;
7275
default: throw CreateUnknownConstantException(s, typeof(global::System.Xml.Schema.
XmlSchemaContentProcessing
));
System.Xml (60)
System\Xml\Dom\DocumentSchemaValidator.cs (2)
562
if (validator.CurrentProcessContents ==
XmlSchemaContentProcessing
.Skip) {
567
else if (validator.CurrentProcessContents ==
XmlSchemaContentProcessing
.Lax) {
System\Xml\Schema\SchemaInfo.cs (2)
206
else if (any.ProcessContentsCorrect !=
XmlSchemaContentProcessing
.Skip) {
215
else if (any.ProcessContentsCorrect ==
XmlSchemaContentProcessing
.Lax) {
System\Xml\Schema\ValidationState.cs (1)
30
public
XmlSchemaContentProcessing
ProcessContents;
System\Xml\Schema\XmlSchemaAny.cs (7)
20
XmlSchemaContentProcessing
processContents =
XmlSchemaContentProcessing
.None;
37
[XmlAttribute("processContents"), DefaultValue(
XmlSchemaContentProcessing
.None)]
38
public
XmlSchemaContentProcessing
ProcessContents {
59
internal
XmlSchemaContentProcessing
ProcessContentsCorrect {
60
get { return processContents ==
XmlSchemaContentProcessing
.None ?
XmlSchemaContentProcessing
.Strict : processContents; }
System\Xml\Schema\XmlSchemaAnyAttribute.cs (7)
20
XmlSchemaContentProcessing
processContents =
XmlSchemaContentProcessing
.None;
37
[XmlAttribute("processContents"), DefaultValue(
XmlSchemaContentProcessing
.None)]
38
public
XmlSchemaContentProcessing
ProcessContents {
50
internal
XmlSchemaContentProcessing
ProcessContentsCorrect {
51
get { return processContents ==
XmlSchemaContentProcessing
.None ?
XmlSchemaContentProcessing
.Strict : processContents; }
System\Xml\Schema\XmlSchemaComplexType.cs (3)
44
anyTypeLax = CreateAnyType(
XmlSchemaContentProcessing
.Lax);
45
anyTypeSkip = CreateAnyType(
XmlSchemaContentProcessing
.Skip);
60
static XmlSchemaComplexType CreateAnyType(
XmlSchemaContentProcessing
processContents) {
System\Xml\Schema\XmlSchemaValidator.cs (17)
122
private
XmlSchemaContentProcessing
processContents =
XmlSchemaContentProcessing
.Strict;
400
if (processContents !=
XmlSchemaContentProcessing
.Skip) {
419
context.NeedValidateChildren = processContents !=
XmlSchemaContentProcessing
.Skip;
502
&& processContents ==
XmlSchemaContentProcessing
.Strict
509
else if (processContents !=
XmlSchemaContentProcessing
.Skip) {
973
internal
XmlSchemaContentProcessing
CurrentProcessContents {
986
return (processContents ==
XmlSchemaContentProcessing
.Strict || processContents ==
XmlSchemaContentProcessing
.Lax) && context.ElementDecl != null && !context.ValidationSkipped;
1146
processContents = context.ProcessContents =
XmlSchemaContentProcessing
.Skip;
1169
processContents = context.ProcessContents =
XmlSchemaContentProcessing
.Skip;
1179
processContents = context.ProcessContents =
XmlSchemaContentProcessing
.Skip;
1356
if (elementDecl == null && processContents !=
XmlSchemaContentProcessing
.Skip) {
1418
if (HasSchema && processContents ==
XmlSchemaContentProcessing
.Strict) {
1463
processContents = context.ProcessContents =
XmlSchemaContentProcessing
.Skip;
1466
else if (HasSchema && processContents ==
XmlSchemaContentProcessing
.Strict) { //Error and skip validation for children
1467
processContents = context.ProcessContents =
XmlSchemaContentProcessing
.Skip;
System\Xml\Schema\XsdBuilder.cs (2)
1738
builder.anyAttribute.ProcessContents = (
XmlSchemaContentProcessing
)builder.ParseEnum(value, "processContents", ProcessContentsStringValues);
1856
builder.anyElement.ProcessContents = (
XmlSchemaContentProcessing
)builder.ParseEnum(value, "processContents", ProcessContentsStringValues);
System\Xml\Schema\XsdValidator.cs (8)
32
private
XmlSchemaContentProcessing
processContents;
68
processContents =
XmlSchemaContentProcessing
.Strict;
176
processContents = context.ProcessContents =
XmlSchemaContentProcessing
.Skip;
195
if (processContents !=
XmlSchemaContentProcessing
.Skip) {
200
if (HasSchema && processContents ==
XmlSchemaContentProcessing
.Strict) {
214
context.NeedValidateChildren = processContents !=
XmlSchemaContentProcessing
.Skip;
402
bool skipContents = (processContents ==
XmlSchemaContentProcessing
.Skip);
423
&& processContents ==
XmlSchemaContentProcessing
.Strict
System\Xml\Serialization\SchemaObjectWriter.cs (10)
646
XmlSchemaContentProcessing
process = o.@ProcessContents ==
XmlSchemaContentProcessing
.@None ?
XmlSchemaContentProcessing
.Strict : o.@ProcessContents;
653
string Write34_XmlSchemaContentProcessing(
XmlSchemaContentProcessing
v) {
656
case
XmlSchemaContentProcessing
.@Skip:s = @"skip"; break;
657
case
XmlSchemaContentProcessing
.@Lax:s = @"lax"; break;
658
case
XmlSchemaContentProcessing
.@Strict:s = @"strict"; break;
966
XmlSchemaContentProcessing
process = o.@ProcessContents ==
XmlSchemaContentProcessing
.@None ?
XmlSchemaContentProcessing
.Strict : o.@ProcessContents;
System\Xml\Serialization\XmlSchemaExporter.cs (1)
425
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;