85 references to XmlSchemaContentProcessing
netstandard (1)
netstandard.cs (1)
2317
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Schema.
XmlSchemaContentProcessing
))]
System.Data.Common (4)
System\Data\DataSet.cs (2)
3447
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;
3453
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;
System\Data\DataTable.cs (2)
6653
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;
6659
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;
System.Private.DataContractSerialization (3)
System\Runtime\Serialization\SchemaExporter.cs (3)
729
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;
742
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;
869
iSerializableWildcardElement.ProcessContents =
XmlSchemaContentProcessing
.Skip;
System.Private.Xml (60)
System\Xml\Dom\DocumentSchemaValidator.cs (2)
623
if (_validator.CurrentProcessContents ==
XmlSchemaContentProcessing
.Skip)
630
else if (_validator.CurrentProcessContents ==
XmlSchemaContentProcessing
.Lax)
System\Xml\Schema\SchemaInfo.cs (2)
195
else if (any.ProcessContentsCorrect !=
XmlSchemaContentProcessing
.Skip)
208
else if (any.ProcessContentsCorrect ==
XmlSchemaContentProcessing
.Lax)
System\Xml\Schema\ValidationState.cs (1)
31
public
XmlSchemaContentProcessing
ProcessContents;
System\Xml\Schema\XmlSchemaAny.cs (7)
13
private
XmlSchemaContentProcessing
_processContents =
XmlSchemaContentProcessing
.None;
23
[XmlAttribute("processContents"), DefaultValue(
XmlSchemaContentProcessing
.None)]
24
public
XmlSchemaContentProcessing
ProcessContents
50
internal
XmlSchemaContentProcessing
ProcessContentsCorrect
52
get { return _processContents ==
XmlSchemaContentProcessing
.None ?
XmlSchemaContentProcessing
.Strict : _processContents; }
System\Xml\Schema\XmlSchemaAnyAttribute.cs (7)
13
private
XmlSchemaContentProcessing
_processContents =
XmlSchemaContentProcessing
.None;
23
[XmlAttribute("processContents"), DefaultValue(
XmlSchemaContentProcessing
.None)]
24
public
XmlSchemaContentProcessing
ProcessContents
38
internal
XmlSchemaContentProcessing
ProcessContentsCorrect
40
get { return _processContents ==
XmlSchemaContentProcessing
.None ?
XmlSchemaContentProcessing
.Strict : _processContents; }
System\Xml\Schema\XmlSchemaComplexType.cs (3)
12
private static readonly XmlSchemaComplexType s_anyTypeLax = CreateAnyType(
XmlSchemaContentProcessing
.Lax);
13
private static readonly XmlSchemaComplexType s_anyTypeSkip = CreateAnyType(
XmlSchemaContentProcessing
.Skip);
54
private static XmlSchemaComplexType CreateAnyType(
XmlSchemaContentProcessing
processContents)
System\Xml\Schema\XmlSchemaValidator.cs (17)
123
private
XmlSchemaContentProcessing
_processContents =
XmlSchemaContentProcessing
.Strict;
426
if (_processContents !=
XmlSchemaContentProcessing
.Skip)
450
_context.NeedValidateChildren = _processContents !=
XmlSchemaContentProcessing
.Skip;
537
&& _processContents ==
XmlSchemaContentProcessing
.Strict
545
else if (_processContents !=
XmlSchemaContentProcessing
.Skip)
1112
internal
XmlSchemaContentProcessing
CurrentProcessContents
1130
return (_processContents ==
XmlSchemaContentProcessing
.Strict || _processContents ==
XmlSchemaContentProcessing
.Lax) && _context.ElementDecl != null && !_context.ValidationSkipped;
1329
_processContents = _context.ProcessContents =
XmlSchemaContentProcessing
.Skip;
1357
_processContents = _context.ProcessContents =
XmlSchemaContentProcessing
.Skip;
1369
_processContents = _context.ProcessContents =
XmlSchemaContentProcessing
.Skip;
1595
if (elementDecl == null && _processContents !=
XmlSchemaContentProcessing
.Skip)
1676
if (HasSchema && _processContents ==
XmlSchemaContentProcessing
.Strict)
1729
_processContents = _context.ProcessContents =
XmlSchemaContentProcessing
.Skip;
1732
else if (HasSchema && _processContents ==
XmlSchemaContentProcessing
.Strict)
1734
_processContents = _context.ProcessContents =
XmlSchemaContentProcessing
.Skip;
System\Xml\Schema\XsdBuilder.cs (2)
1884
builder._anyAttribute!.ProcessContents = (
XmlSchemaContentProcessing
)builder.ParseEnum(value, "processContents", s_processContentsStringValues);
2015
builder._anyElement!.ProcessContents = (
XmlSchemaContentProcessing
)builder.ParseEnum(value, "processContents", s_processContentsStringValues);
System\Xml\Schema\XsdValidator.cs (8)
29
private
XmlSchemaContentProcessing
_processContents;
82
_processContents =
XmlSchemaContentProcessing
.Strict;
201
_processContents = context.ProcessContents =
XmlSchemaContentProcessing
.Skip;
223
if (_processContents !=
XmlSchemaContentProcessing
.Skip)
231
if (HasSchema && _processContents ==
XmlSchemaContentProcessing
.Strict)
248
context.NeedValidateChildren = _processContents !=
XmlSchemaContentProcessing
.Skip;
485
bool skipContents = (_processContents ==
XmlSchemaContentProcessing
.Skip);
510
&& _processContents ==
XmlSchemaContentProcessing
.Strict
System\Xml\Serialization\SchemaObjectWriter.cs (10)
779
XmlSchemaContentProcessing
process = o.@ProcessContents ==
XmlSchemaContentProcessing
.@None ?
XmlSchemaContentProcessing
.Strict : o.@ProcessContents;
786
private static string? Write34_XmlSchemaContentProcessing(
XmlSchemaContentProcessing
v)
791
case
XmlSchemaContentProcessing
.@Skip: s = @"skip"; break;
792
case
XmlSchemaContentProcessing
.@Lax: s = @"lax"; break;
793
case
XmlSchemaContentProcessing
.@Strict: s = @"strict"; break;
1152
XmlSchemaContentProcessing
process = o.@ProcessContents ==
XmlSchemaContentProcessing
.@None ?
XmlSchemaContentProcessing
.Strict : o.@ProcessContents;
System\Xml\Serialization\XmlSchemaExporter.cs (1)
451
any.ProcessContents =
XmlSchemaContentProcessing
.Lax;
System.Web.Services.Description (15)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (15)
2571
if (((global::System.Xml.Schema.
XmlSchemaContentProcessing
)o.@ProcessContents) != Xml.Schema.
XmlSchemaContentProcessing
.@None) {
2572
WriteAttribute(@"processContents", @"", Write38_XmlSchemaContentProcessing(((global::System.Xml.Schema.
XmlSchemaContentProcessing
)o.@ProcessContents)));
2578
private string Write38_XmlSchemaContentProcessing(global::System.Xml.Schema.
XmlSchemaContentProcessing
v) {
2581
case Xml.Schema.
XmlSchemaContentProcessing
.@Skip: s = @"skip"; break;
2582
case Xml.Schema.
XmlSchemaContentProcessing
.@Lax: s = @"lax"; break;
2583
case Xml.Schema.
XmlSchemaContentProcessing
.@Strict: s = @"strict"; break;
3799
if (((global::System.Xml.Schema.
XmlSchemaContentProcessing
)o.@ProcessContents) != Xml.Schema.
XmlSchemaContentProcessing
.@None) {
3800
WriteAttribute(@"processContents", @"", Write38_XmlSchemaContentProcessing(((global::System.Xml.Schema.
XmlSchemaContentProcessing
)o.@ProcessContents)));
8953
private global::System.Xml.Schema.
XmlSchemaContentProcessing
Read38_XmlSchemaContentProcessing(string s) {
8955
case @"skip": return Xml.Schema.
XmlSchemaContentProcessing
.@Skip;
8956
case @"lax": return Xml.Schema.
XmlSchemaContentProcessing
.@Lax;
8957
case @"strict": return Xml.Schema.
XmlSchemaContentProcessing
.@Strict;
8958
default: throw CreateUnknownConstantException(s, typeof(global::System.Xml.Schema.
XmlSchemaContentProcessing
));
System.Xml (1)
System.Xml.cs (1)
42
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Schema.
XmlSchemaContentProcessing
))]
System.Xml.ReaderWriter (1)
artifacts\obj\System.Xml.ReaderWriter\Debug\net10.0\System.Xml.ReaderWriter.Forwards.cs (1)
41
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Schema.
XmlSchemaContentProcessing
))]