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