2 instantiations of XmlSchemaInclude
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1178
builder._xso = builder._include = new
XmlSchemaInclude
();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
12980
o = new Microsoft.Xml.Schema.
XmlSchemaInclude
();
11 references to XmlSchemaInclude
dotnet-svcutil-lib (11)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (1)
382
else 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)
673
private
XmlSchemaInclude
_include;
993
_include = (
XmlSchemaInclude
)container;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemas.cs (1)
667
string 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)
2361
else if (ai is Microsoft.Xml.Schema.
XmlSchemaInclude
)
2363
Write12_XmlSchemaInclude(@"include", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.
XmlSchemaInclude
)ai), false, false);
4963
private void Write12_XmlSchemaInclude(string n, string ns, Microsoft.Xml.Schema.
XmlSchemaInclude
o, bool isNullable, bool needType)
4973
if (t == typeof(Microsoft.Xml.Schema.
XmlSchemaInclude
))
12964
private Microsoft.Xml.Schema.
XmlSchemaInclude
Read12_XmlSchemaInclude(bool isNullable, bool checkType)
12979
Microsoft.Xml.Schema.
XmlSchemaInclude
o;