8 writes to Particle
dotnet-svcutil-lib (8)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (1)
468newComplexRest.Particle = CloneParticle(newComplexRest.Particle, parentSchema);
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
2416_complexContentRestriction.Particle = particle;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (1)
387((XmlSchemaComplexContentRestriction)type.ContentModel.Content).Particle = seq;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
1113((XmlSchemaComplexContentRestriction)type.ContentModel.Content).Particle = seq;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (4)
12426o.@Particle = Read54_XmlSchemaChoice(false, true); 12431o.@Particle = Read44_XmlSchemaGroupRef(false, true); 12436o.@Particle = Read55_XmlSchemaAll(false, true); 12441o.@Particle = Read53_XmlSchemaSequence(false, true);
35 references to Particle
dotnet-svcutil-lib (35)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (3)
1847if (contentRestriction.Particle != null) 1849SetParent(contentRestriction.Particle, contentRestriction); //Group / all / choice / sequence 1850PreprocessParticle(contentRestriction.Particle);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (2)
345CleanupParticle(complexRestriction.Particle); 1014complexType.SetContentTypeParticle(CompileContentTypeParticle(complexRestriction.Particle, true));
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (3)
1490if (contentRestriction.Particle != null) 1492SetParent(contentRestriction.Particle, contentRestriction); //Group / all / choice / sequence 1493PreprocessParticle(contentRestriction.Particle);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (2)
331CleanupParticle(complexRestriction.Particle); 1084complexType.SetContentTypeParticle(CompileContentTypeParticle(complexRestriction.Particle));
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (2)
466if (HasParticleRef(newComplexRest.Particle, parentSchema)) 468newComplexRest.Particle = CloneParticle(newComplexRest.Particle, parentSchema);
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
2410if ((_complexContentRestriction.Particle != null) ||
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (8)
1238if (o.@Particle is XmlSchemaSequence) 1240Write54_XmlSchemaSequence((XmlSchemaSequence)o.@Particle); 1242else if (o.@Particle is XmlSchemaGroupRef) 1244Write55_XmlSchemaGroupRef((XmlSchemaGroupRef)o.@Particle); 1246else if (o.@Particle is XmlSchemaChoice) 1248Write52_XmlSchemaChoice((XmlSchemaChoice)o.@Particle); 1250else if (o.@Particle is XmlSchemaAll) 1252Write43_XmlSchemaAll((XmlSchemaAll)o.@Particle);
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaImporter.cs (3)
381if (((XmlSchemaComplexContentRestriction)model.Content).Particle != null) 383ImportGroup(((XmlSchemaComplexContentRestriction)model.Content).Particle, members, typeNs); 530XmlSchemaParticle particle = restriction.Particle;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (1)
479dataContract = ImportType(typeName, restriction.Particle, restriction.Attributes, restriction.AnyAttribute, null /* baseTypeName */, complexType.Annotation);
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (10)
4548if (o.@Particle is Microsoft.Xml.Schema.XmlSchemaAll) 4550Write55_XmlSchemaAll(@"all", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.XmlSchemaAll)o.@Particle), false, false); 4552else if (o.@Particle is Microsoft.Xml.Schema.XmlSchemaSequence) 4554Write53_XmlSchemaSequence(@"sequence", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.XmlSchemaSequence)o.@Particle), false, false); 4556else if (o.@Particle is Microsoft.Xml.Schema.XmlSchemaChoice) 4558Write54_XmlSchemaChoice(@"choice", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.XmlSchemaChoice)o.@Particle), false, false); 4560else if (o.@Particle is Microsoft.Xml.Schema.XmlSchemaGroupRef) 4562Write44_XmlSchemaGroupRef(@"group", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.XmlSchemaGroupRef)o.@Particle), false, false); 4566if (o.@Particle != null) 4568throw CreateUnknownTypeException(o.@Particle);