6 instantiations of XmlSchemaSimpleTypeList
dotnet-svcutil-lib (6)
FrameworkFork\Microsoft.Xml\Xml\schema\DatatypeImplementation.cs (1)
209XmlSchemaSimpleTypeList listContent = new XmlSchemaSimpleTypeList();
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1542builder._xso = builder._simpleTypeList = new XmlSchemaSimpleTypeList();
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (1)
433XmlSchemaSimpleTypeList list = new XmlSchemaSimpleTypeList();
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (2)
808XmlSchemaSimpleTypeList list = new XmlSchemaSimpleTypeList(); 1214XmlSchemaSimpleTypeList list = new XmlSchemaSimpleTypeList();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
10643o = new Microsoft.Xml.Schema.XmlSchemaSimpleTypeList();
52 references to XmlSchemaSimpleTypeList
dotnet-svcutil-lib (52)
FrameworkFork\Microsoft.Xml\Xml\schema\DatatypeImplementation.cs (3)
209XmlSchemaSimpleTypeList listContent = new XmlSchemaSimpleTypeList(); 955XmlSchemaSimpleTypeList listType = simpleType.Content as XmlSchemaSimpleTypeList;
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (3)
1610else if (simpleType.Content is XmlSchemaSimpleTypeList) 1612XmlSchemaSimpleTypeList list = (XmlSchemaSimpleTypeList)simpleType.Content;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (3)
522if (simpleType.Content is XmlSchemaSimpleTypeList) 524XmlSchemaSimpleTypeList list = (XmlSchemaSimpleTypeList)simpleType.Content;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (3)
1255else if (simpleType.Content is XmlSchemaSimpleTypeList) 1257XmlSchemaSimpleTypeList list = (XmlSchemaSimpleTypeList)simpleType.Content;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (3)
603if (simpleType.Content is XmlSchemaSimpleTypeList) 605XmlSchemaSimpleTypeList list = (XmlSchemaSimpleTypeList)simpleType.Content;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleType.cs (1)
34XmlElement("list", typeof(XmlSchemaSimpleTypeList)),
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleTypeList.cs (2)
56XmlSchemaSimpleTypeList newList = (XmlSchemaSimpleTypeList)MemberwiseClone();
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (2)
660private XmlSchemaSimpleTypeList _simpleTypeList; 1062_simpleTypeList = (XmlSchemaSimpleTypeList)container;
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (3)
401else if (content is XmlSchemaSimpleTypeList) 403XmlSchemaSimpleTypeList list = (XmlSchemaSimpleTypeList)content;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (5)
474else if (t == typeof(XmlSchemaSimpleTypeList)) 476Write14_XmlSchemaSimpleTypeList((XmlSchemaSimpleTypeList)o); 574else if (o.@Content is XmlSchemaSimpleTypeList) 576Write14_XmlSchemaSimpleTypeList((XmlSchemaSimpleTypeList)o.@Content); 618private void Write14_XmlSchemaSimpleTypeList(XmlSchemaSimpleTypeList o)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (1)
433XmlSchemaSimpleTypeList list = new XmlSchemaSimpleTypeList();
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaImporter.cs (4)
594else if (dataType.Content is XmlSchemaSimpleTypeList || dataType.Content is XmlSchemaSimpleTypeUnion) 596if (dataType.Content is XmlSchemaSimpleTypeList) 599XmlSchemaSimpleTypeList list = (XmlSchemaSimpleTypeList)dataType.Content;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (2)
808XmlSchemaSimpleTypeList list = new XmlSchemaSimpleTypeList(); 1214XmlSchemaSimpleTypeList list = new XmlSchemaSimpleTypeList();
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (7)
1797else if (dataType.Content is XmlSchemaSimpleTypeList || dataType.Content is XmlSchemaSimpleTypeUnion) 1799if (dataType.Content is XmlSchemaSimpleTypeList) 1802XmlSchemaSimpleTypeList list = (XmlSchemaSimpleTypeList)dataType.Content; 1980else if (content is XmlSchemaSimpleTypeList) 1982XmlSchemaSimpleTypeList list = (XmlSchemaSimpleTypeList)content;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (4)
431else if (content is XmlSchemaSimpleTypeList) 432dataContract = ImportFlagsEnum(typeName, (XmlSchemaSimpleTypeList)content, simpleType.Annotation); 1169private EnumDataContract ImportFlagsEnum(XmlQualifiedName typeName, XmlSchemaSimpleTypeList list, XmlSchemaAnnotation annotation) 1178else if (content is XmlSchemaSimpleTypeList)
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (6)
3161else if (o.@Content is Microsoft.Xml.Schema.XmlSchemaSimpleTypeList) 3163Write17_XmlSchemaSimpleTypeList(@"list", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.XmlSchemaSimpleTypeList)o.@Content), false, false); 3176private void Write17_XmlSchemaSimpleTypeList(string n, string ns, Microsoft.Xml.Schema.XmlSchemaSimpleTypeList o, bool isNullable, bool needType) 3186if (t == typeof(Microsoft.Xml.Schema.XmlSchemaSimpleTypeList)) 10627private Microsoft.Xml.Schema.XmlSchemaSimpleTypeList Read17_XmlSchemaSimpleTypeList(bool isNullable, bool checkType) 10642Microsoft.Xml.Schema.XmlSchemaSimpleTypeList o;