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