7 instantiations of XmlSchemaSimpleContent
dotnet-svcutil-lib (7)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (3)
736XmlSchemaSimpleContent sc = new XmlSchemaSimpleContent(); 833XmlSchemaSimpleContent sc = new XmlSchemaSimpleContent(); 1266XmlSchemaSimpleContent sc = new XmlSchemaSimpleContent();
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1719builder._xso = builder._simpleContent = new XmlSchemaSimpleContent();
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (2)
1037XmlSchemaSimpleContent model = new XmlSchemaSimpleContent(); 1142XmlSchemaSimpleContent model = new XmlSchemaSimpleContent();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
11949o = new Microsoft.Xml.Schema.XmlSchemaSimpleContent();
48 references to XmlSchemaSimpleContent
dotnet-svcutil-lib (48)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (5)
736XmlSchemaSimpleContent sc = new XmlSchemaSimpleContent(); 833XmlSchemaSimpleContent sc = new XmlSchemaSimpleContent(); 1000XmlSchemaSimpleContent sc = ct.ContentModel as XmlSchemaSimpleContent; 1266XmlSchemaSimpleContent sc = new XmlSchemaSimpleContent();
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (5)
1162XmlSchemaSimpleContent content = (XmlSchemaSimpleContent)ctype.ContentModel; 1739if (complexType.ContentModel is XmlSchemaSimpleContent) 1741XmlSchemaSimpleContent content = (XmlSchemaSimpleContent)complexType.ContentModel;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (6)
319if (complexType.ContentModel is XmlSchemaSimpleContent) 321XmlSchemaSimpleContent simpleContent = (XmlSchemaSimpleContent)complexType.ContentModel; 708if (complexType.ContentModel is XmlSchemaSimpleContent) 710XmlSchemaSimpleContent simpleContent = (XmlSchemaSimpleContent)complexType.ContentModel;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (5)
811XmlSchemaSimpleContent content = (XmlSchemaSimpleContent)ctype.ContentModel; 1382if (complexType.ContentModel is XmlSchemaSimpleContent) 1384XmlSchemaSimpleContent content = (XmlSchemaSimpleContent)complexType.ContentModel;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (6)
305if (complexType.ContentModel is XmlSchemaSimpleContent) 307XmlSchemaSimpleContent simpleContent = (XmlSchemaSimpleContent)complexType.ContentModel; 795if (complexType.ContentModel is XmlSchemaSimpleContent) 797XmlSchemaSimpleContent simpleContent = (XmlSchemaSimpleContent)complexType.ContentModel;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (5)
198[XmlElement("simpleContent", typeof(XmlSchemaSimpleContent)), 419XmlSchemaSimpleContent simpleContent = complexType.ContentModel as XmlSchemaSimpleContent; 422XmlSchemaSimpleContent newSimpleContent = (XmlSchemaSimpleContent)simpleContent.Clone();
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (2)
656private XmlSchemaSimpleContent _simpleContent; 1050_simpleContent = (XmlSchemaSimpleContent)container;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (5)
449else if (t == typeof(XmlSchemaSimpleContent)) 451Write36_XmlSchemaSimpleContent((XmlSchemaSimpleContent)o); 823else if (o.@ContentModel is XmlSchemaSimpleContent) 825Write36_XmlSchemaSimpleContent((XmlSchemaSimpleContent)o.@ContentModel); 848private void Write36_XmlSchemaSimpleContent(XmlSchemaSimpleContent o)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (2)
1037XmlSchemaSimpleContent model = new XmlSchemaSimpleContent(); 1142XmlSchemaSimpleContent model = new XmlSchemaSimpleContent();
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (1)
461if (contentModel is XmlSchemaSimpleContent)
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (6)
3971if (o.@ContentModel is Microsoft.Xml.Schema.XmlSchemaSimpleContent) 3973Write61_XmlSchemaSimpleContent(@"simpleContent", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.XmlSchemaSimpleContent)o.@ContentModel), false, false); 4603private void Write61_XmlSchemaSimpleContent(string n, string ns, Microsoft.Xml.Schema.XmlSchemaSimpleContent o, bool isNullable, bool needType) 4613if (t == typeof(Microsoft.Xml.Schema.XmlSchemaSimpleContent)) 11933private Microsoft.Xml.Schema.XmlSchemaSimpleContent Read61_XmlSchemaSimpleContent(bool isNullable, bool checkType) 11948Microsoft.Xml.Schema.XmlSchemaSimpleContent o;