2 instantiations of XmlSchemaSimpleContentRestriction
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1762
builder._xso = builder._simpleContentRestriction = new
XmlSchemaSimpleContentRestriction
();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
12132
o = new Microsoft.Xml.Schema.
XmlSchemaSimpleContentRestriction
();
39 references to XmlSchemaSimpleContentRestriction
dotnet-svcutil-lib (39)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (4)
1163
if (content.Content is
XmlSchemaSimpleContentRestriction
)
1165
baseName = ((
XmlSchemaSimpleContentRestriction
)content.Content).BaseTypeName;
1774
XmlSchemaSimpleContentRestriction
contentRestriction = (
XmlSchemaSimpleContentRestriction
)content.Content;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (4)
329
XmlSchemaSimpleContentRestriction
simpleRestriction = (
XmlSchemaSimpleContentRestriction
)simpleContent.Content;
718
CompileSimpleContentRestriction(complexType, (
XmlSchemaSimpleContentRestriction
)simpleContent.Content);
831
private void CompileSimpleContentRestriction(XmlSchemaComplexType complexType,
XmlSchemaSimpleContentRestriction
simpleRestriction)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (4)
812
if (content.Content is
XmlSchemaSimpleContentRestriction
)
814
baseName = ((
XmlSchemaSimpleContentRestriction
)content.Content).BaseTypeName;
1417
XmlSchemaSimpleContentRestriction
contentRestriction = (
XmlSchemaSimpleContentRestriction
)content.Content;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (4)
315
XmlSchemaSimpleContentRestriction
simpleRestriction = (
XmlSchemaSimpleContentRestriction
)simpleContent.Content;
805
CompileSimpleContentRestriction(complexType, (
XmlSchemaSimpleContentRestriction
)simpleContent.Content);
909
private void CompileSimpleContentRestriction(XmlSchemaComplexType complexType,
XmlSchemaSimpleContentRestriction
simpleRestriction)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (6)
371
else if (_contentModel.Content is
XmlSchemaSimpleContentRestriction
)
372
return ((
XmlSchemaSimpleContentRestriction
)_contentModel.Content).BaseTypeName;
434
XmlSchemaSimpleContentRestriction
simpleRest = (
XmlSchemaSimpleContentRestriction
)simpleContent.Content;
435
XmlSchemaSimpleContentRestriction
newSimpleRest = (
XmlSchemaSimpleContentRestriction
)simpleRest.Clone();
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleContent.cs (1)
25
[XmlElement("restriction", typeof(
XmlSchemaSimpleContentRestriction
)),
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (2)
658
private
XmlSchemaSimpleContentRestriction
_simpleContentRestriction;
1056
_simpleContentRestriction = (
XmlSchemaSimpleContentRestriction
)container;
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (3)
354
else if (content is
XmlSchemaSimpleContentRestriction
)
356
XmlSchemaSimpleContentRestriction
restriction = (
XmlSchemaSimpleContentRestriction
)content;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (5)
434
else if (t == typeof(
XmlSchemaSimpleContentRestriction
))
436
Write40_XmlSchemaSimpleContentRestriction((
XmlSchemaSimpleContentRestriction
)o);
856
if (o.@Content is
XmlSchemaSimpleContentRestriction
)
858
Write40_XmlSchemaSimpleContentRestriction((
XmlSchemaSimpleContentRestriction
)o.@Content);
884
private void Write40_XmlSchemaSimpleContentRestriction(
XmlSchemaSimpleContentRestriction
o)
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (6)
4642
else if (o.@Content is Microsoft.Xml.Schema.
XmlSchemaSimpleContentRestriction
)
4644
Write59_Item(@"restriction", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.
XmlSchemaSimpleContentRestriction
)o.@Content), false, false);
4657
private void Write59_Item(string n, string ns, Microsoft.Xml.Schema.
XmlSchemaSimpleContentRestriction
o, bool isNullable, bool needType)
4667
if (t == typeof(Microsoft.Xml.Schema.
XmlSchemaSimpleContentRestriction
))
12116
private Microsoft.Xml.Schema.
XmlSchemaSimpleContentRestriction
Read59_Item(bool isNullable, bool checkType)
12131
Microsoft.Xml.Schema.
XmlSchemaSimpleContentRestriction
o;