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