4 writes to @Particle
System.Web.Services (3)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (3)
10244o.@Particle = Read53_XmlSchemaSequence(false, true); 10248o.@Particle = Read54_XmlSchemaChoice(false, true); 10252o.@Particle = Read55_XmlSchemaAll(false, true);
System.Xml (1)
System\Xml\Schema\XsdBuilder.cs (1)
2209group.Particle = (XmlSchemaGroupBase)particle;
42 references to @Particle
System.Web.Services (8)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (8)
2077if (o.@Particle is global::System.Xml.Schema.XmlSchemaAll) { 2078Write55_XmlSchemaAll(@"all", @"http://www.w3.org/2001/XMLSchema", ((global::System.Xml.Schema.XmlSchemaAll)o.@Particle), false, false); 2080else if (o.@Particle is global::System.Xml.Schema.XmlSchemaChoice) { 2081Write54_XmlSchemaChoice(@"choice", @"http://www.w3.org/2001/XMLSchema", ((global::System.Xml.Schema.XmlSchemaChoice)o.@Particle), false, false); 2083else if (o.@Particle is global::System.Xml.Schema.XmlSchemaSequence) { 2084Write53_XmlSchemaSequence(@"sequence", @"http://www.w3.org/2001/XMLSchema", ((global::System.Xml.Schema.XmlSchemaSequence)o.@Particle), false, false); 2087if (o.@Particle != null) { 2088throw CreateUnknownTypeException(o.@Particle);
System.Xml (34)
System\Xml\Schema\Preprocessor.cs (8)
915if (group.Particle != null) { 916count = CountGroupSelfReference(group.Particle.Items, group.QualifiedName, group.Redefined); 1525if (group.Particle == null) { 1529if (group.Particle.MinOccursString != null) { 1530SendValidationEvent(Res.Sch_ForbiddenAttribute, "minOccurs", group.Particle); 1532if (group.Particle.MaxOccursString != null) { 1533SendValidationEvent(Res.Sch_ForbiddenAttribute, "maxOccurs", group.Particle); 1536PreprocessParticle(group.Particle);
System\Xml\Schema\SchemaCollectionCompiler.cs (2)
324CleanupParticle(group.Particle); 401group.CanonicalParticle = CannonicalizeParticle(group.Particle, true, true);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (8)
609if (group.Particle != null) { 610count = CountGroupSelfReference(group.Particle.Items, group.QualifiedName); 1211if (group.Particle == null) { 1215if (group.Particle.MinOccursString != null) { 1216SendValidationEvent(Res.Sch_ForbiddenAttribute, "minOccurs", group.Particle); 1218if (group.Particle.MaxOccursString != null) { 1219SendValidationEvent(Res.Sch_ForbiddenAttribute, "maxOccurs", group.Particle); 1222PreprocessParticle(group.Particle);
System\Xml\Schema\SchemaSetCompiler.cs (4)
326CleanupParticle(group.Particle); 435baseGroup.CanonicalParticle = CannonicalizeParticle(baseGroup.Particle, true); 438redefinedGroup.CanonicalParticle = CannonicalizeParticle(redefinedGroup.Particle, true); 465group.CanonicalParticle = CannonicalizeParticle(group.Particle, true);
System\Xml\Schema\XsdBuilder.cs (1)
2206if (group.Particle != null) {
System\Xml\Serialization\ImportContext.cs (2)
328particle = ((XmlSchemaGroup)schemas.Find(refGroup.RefName, typeof(XmlSchemaGroup), false)).Particle; 399Depends(((XmlSchemaGroup)item).Particle);
System\Xml\Serialization\SchemaObjectWriter.cs (6)
1059if (o.@Particle is XmlSchemaSequence) { 1060Write54_XmlSchemaSequence((XmlSchemaSequence)o.@Particle); 1062else if (o.@Particle is XmlSchemaChoice) { 1063Write52_XmlSchemaChoice((XmlSchemaChoice)o.@Particle); 1065else if (o.@Particle is XmlSchemaAll) { 1066Write43_XmlSchemaAll((XmlSchemaAll)o.@Particle);
System\Xml\Serialization\XmlSchemaImporter.cs (3)
736items.Particle = FindGroup(refGroup.RefName).Particle; 885return GatherGroupChoices(group.Particle, choiceElements, identifier, ns, ref needExplicitOrder, allowDuplicates); 975ImportGroupMembers(FindGroup(refGroup.RefName).Particle, identifier, members, membersScope, elementsScope, refGroup.RefName.Namespace, groupRepeats | refGroup.IsMultipleOccurrence, ref mixed, ref needExplicitOrder, allowDuplicates, allowUnboundedElements);