2 instantiations of XmlSchemaInclude
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1178builder._xso = builder._include = new XmlSchemaInclude();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
12980o = new Microsoft.Xml.Schema.XmlSchemaInclude();
11 references to XmlSchemaInclude
dotnet-svcutil-lib (11)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (1)
382else if ((include is XmlSchemaRedefine || include is XmlSchemaInclude) && include.Schema == null)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchema.cs (1)
348[XmlElement("include", typeof(XmlSchemaInclude)),
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (2)
673private XmlSchemaInclude _include; 993_include = (XmlSchemaInclude)container;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemas.cs (1)
667string itemType = o is XmlSchemaImport ? "import" : o is XmlSchemaInclude ? "include" : o is XmlSchemaRedefine ? "redefine" : o.GetType().Name;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (6)
2361else if (ai is Microsoft.Xml.Schema.XmlSchemaInclude) 2363Write12_XmlSchemaInclude(@"include", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.XmlSchemaInclude)ai), false, false); 4963private void Write12_XmlSchemaInclude(string n, string ns, Microsoft.Xml.Schema.XmlSchemaInclude o, bool isNullable, bool needType) 4973if (t == typeof(Microsoft.Xml.Schema.XmlSchemaInclude)) 12964private Microsoft.Xml.Schema.XmlSchemaInclude Read12_XmlSchemaInclude(bool isNullable, bool checkType) 12979Microsoft.Xml.Schema.XmlSchemaInclude o;