4 writes to maxOccurs
System.Xml (4)
System\Xml\Schema\XmlSchemaParticle.cs (4)
62
maxOccurs
= decimal.One;
67
maxOccurs
= decimal.MaxValue;
70
maxOccurs
= XmlConvert.ToInteger(value);
110
maxOccurs
= value;
8 references to maxOccurs
System.Xml (8)
System\Xml\Schema\XmlSchemaParticle.cs (8)
58
return (flags & Occurs.Max) == 0 ? null : (
maxOccurs
== decimal.MaxValue) ? "unbounded" : XmlConvert.ToString(
maxOccurs
);
71
if (
maxOccurs
< decimal.Zero) {
74
else if (
maxOccurs
== decimal.Zero && (flags & Occurs.Min) == 0) {
105
get { return
maxOccurs
; }
111
if (
maxOccurs
== decimal.Zero && (flags & Occurs.Min) == 0) {
119
get { return
maxOccurs
== decimal.Zero; }
123
get { return
maxOccurs
> decimal.One; }