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