3 instantiations of XmlSchemaInclude
System.Web.Services (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
10511o = new global::System.Xml.Schema.XmlSchemaInclude();
System\Web\Services\Protocols\DiscoveryServerProtocol.cs (1)
122XmlSchemaInclude include = new XmlSchemaInclude();
System.Xml (1)
System\Xml\Schema\XsdBuilder.cs (1)
1122builder.xso = builder.include = new XmlSchemaInclude();
14 references to XmlSchemaInclude
System.Web.Services (9)
System\Web\Services\Description\SchemaCompiler.cs (1)
132string itemType = o is XmlSchemaImport ? "import" : o is XmlSchemaInclude ? "include" : o is XmlSchemaRedefine ? "redefine" : o.GetType().Name;
System\Web\Services\Description\ServiceDescriptionSerializer.cs (6)
1849else if (ai is global::System.Xml.Schema.XmlSchemaInclude) { 1850Write12_XmlSchemaInclude(@"include", @"http://www.w3.org/2001/XMLSchema", ((global::System.Xml.Schema.XmlSchemaInclude)ai), false, false); 3937void Write12_XmlSchemaInclude(string n, string ns, global::System.Xml.Schema.XmlSchemaInclude o, bool isNullable, bool needType) { 3944if (t == typeof(global::System.Xml.Schema.XmlSchemaInclude)) { 10498global::System.Xml.Schema.XmlSchemaInclude Read12_XmlSchemaInclude(bool isNullable, bool checkType) { 10510global::System.Xml.Schema.XmlSchemaInclude o;
System\Web\Services\Discovery\SchemaReference.cs (1)
113if (external is XmlSchemaInclude || external is XmlSchemaRedefine) {
System\Web\Services\Protocols\DiscoveryServerProtocol.cs (1)
122XmlSchemaInclude include = new XmlSchemaInclude();
System.Xml (5)
System\Xml\Schema\SchemaCollectionpreProcessor.cs (1)
320else if((include is XmlSchemaRedefine || include is XmlSchemaInclude) && include.Schema == null) {
System\Xml\Schema\XmlSchema.cs (1)
323[XmlElement("include", typeof(XmlSchemaInclude)),
System\Xml\Schema\XsdBuilder.cs (2)
662private XmlSchemaInclude include; 947this.include = (XmlSchemaInclude)container;
System\Xml\Serialization\XmlSchemas.cs (1)
550string itemType = o is XmlSchemaImport ? "import" : o is XmlSchemaInclude ? "include" : o is XmlSchemaRedefine ? "redefine" : o.GetType().Name;