9 writes to @Particle
System.Web.Services (5)
System\Web\Services\Description\HttpProtocolReflector.cs (1)
91
restriction.
Particle
= all;
System\Web\Services\Description\ServiceDescriptionSerializer.cs (4)
10055
o.
@Particle
= Read54_XmlSchemaChoice(false, true);
10059
o.
@Particle
= Read44_XmlSchemaGroupRef(false, true);
10063
o.
@Particle
= Read55_XmlSchemaAll(false, true);
10067
o.
@Particle
= Read53_XmlSchemaSequence(false, true);
System.Xml (4)
System\Xml\Schema\XmlSchemaComplexType.cs (1)
405
newComplexRest.
Particle
= CloneParticle(newComplexRest.Particle, parentSchema);
System\Xml\Schema\XsdBuilder.cs (1)
2203
complexContentRestriction.
Particle
= particle;
System\Xml\Serialization\SoapSchemaExporter.cs (1)
334
((XmlSchemaComplexContentRestriction)type.ContentModel.Content).
Particle
= seq;
System\Xml\Serialization\XmlSchemaExporter.cs (1)
948
((XmlSchemaComplexContentRestriction)type.ContentModel.Content).
Particle
= seq;
38 references to @Particle
System.Data (3)
fx\src\data\System\Data\XMLSchema.cs (3)
922
if (ccRestriction.
Particle
!= null)
923
HandleParticle(ccRestriction.
Particle
, table, tableChildren, isBase);
973
return ((XmlSchemaComplexContentRestriction) cContent ).
Particle
;
System.Runtime.Serialization (1)
System\Runtime\Serialization\SchemaImporter.cs (1)
480
dataContract = ImportType(typeName, restriction.
Particle
, restriction.Attributes, restriction.AnyAttribute, null /* baseTypeName */, complexType.Annotation);
System.Web.Services (10)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (10)
3607
if (o.
@Particle
is global::System.Xml.Schema.XmlSchemaAll) {
3608
Write55_XmlSchemaAll(@"all", @"http://www.w3.org/2001/XMLSchema", ((global::System.Xml.Schema.XmlSchemaAll)o.
@Particle
), false, false);
3610
else if (o.
@Particle
is global::System.Xml.Schema.XmlSchemaSequence) {
3611
Write53_XmlSchemaSequence(@"sequence", @"http://www.w3.org/2001/XMLSchema", ((global::System.Xml.Schema.XmlSchemaSequence)o.
@Particle
), false, false);
3613
else if (o.
@Particle
is global::System.Xml.Schema.XmlSchemaChoice) {
3614
Write54_XmlSchemaChoice(@"choice", @"http://www.w3.org/2001/XMLSchema", ((global::System.Xml.Schema.XmlSchemaChoice)o.
@Particle
), false, false);
3616
else if (o.
@Particle
is global::System.Xml.Schema.XmlSchemaGroupRef) {
3617
Write44_XmlSchemaGroupRef(@"group", @"http://www.w3.org/2001/XMLSchema", ((global::System.Xml.Schema.XmlSchemaGroupRef)o.
@Particle
), false, false);
3620
if (o.
@Particle
!= null) {
3621
throw CreateUnknownTypeException(o.
@Particle
);
System.Xml (24)
System\Xml\Schema\Preprocessor.cs (3)
1496
if (contentRestriction.
Particle
!= null) {
1497
SetParent(contentRestriction.
Particle
, contentRestriction); //Group / all / choice / sequence
1498
PreprocessParticle(contentRestriction.
Particle
);
System\Xml\Schema\SchemaCollectionCompiler.cs (2)
278
CleanupParticle(complexRestriction.
Particle
);
808
complexType.SetContentTypeParticle(CompileContentTypeParticle(complexRestriction.
Particle
, true));
System\Xml\Schema\SchemaCollectionpreProcessor.cs (3)
1182
if (contentRestriction.
Particle
!= null) {
1183
SetParent(contentRestriction.
Particle
, contentRestriction); //Group / all / choice / sequence
1184
PreprocessParticle(contentRestriction.
Particle
);
System\Xml\Schema\SchemaSetCompiler.cs (2)
266
CleanupParticle(complexRestriction.
Particle
);
861
complexType.SetContentTypeParticle(CompileContentTypeParticle(complexRestriction.
Particle
));
System\Xml\Schema\XmlSchemaComplexType.cs (2)
404
if (HasParticleRef(newComplexRest.
Particle
, parentSchema)) {
405
newComplexRest.Particle = CloneParticle(newComplexRest.
Particle
, parentSchema);
System\Xml\Schema\XsdBuilder.cs (1)
2198
if ( (complexContentRestriction.
Particle
!= null) ||
System\Xml\Serialization\SchemaObjectWriter.cs (8)
1034
if (o.
@Particle
is XmlSchemaSequence) {
1035
Write54_XmlSchemaSequence((XmlSchemaSequence)o.
@Particle
);
1037
else if (o.
@Particle
is XmlSchemaGroupRef) {
1038
Write55_XmlSchemaGroupRef((XmlSchemaGroupRef)o.
@Particle
);
1040
else if (o.
@Particle
is XmlSchemaChoice) {
1041
Write52_XmlSchemaChoice((XmlSchemaChoice)o.
@Particle
);
1043
else if (o.
@Particle
is XmlSchemaAll) {
1044
Write43_XmlSchemaAll((XmlSchemaAll)o.
@Particle
);
System\Xml\Serialization\SoapSchemaImporter.cs (3)
342
if (((XmlSchemaComplexContentRestriction)model.Content).
Particle
!= null) {
343
ImportGroup(((XmlSchemaComplexContentRestriction)model.Content).
Particle
, members, typeNs);
473
XmlSchemaParticle particle = restriction.
Particle
;