5 writes to index
System.Workflow.ComponentModel (5)
AuthoringOM\Bind.cs (5)
1794
this.
index
= 0;
1843
--this.
index
;
1849
++this.
index
; // skip over special character
1865
++this.
index
;
1889
++this.
index
;
14 references to index
System.Workflow.ComponentModel (14)
AuthoringOM\Bind.cs (14)
1810
char c = (this.
index
< this.pathLength) ? this.pathValue[this.
index
] : NullChar;
1823
this.error = "path[" + this.
index
+ "] = " + c;
1846
this.error = "path[" + this.
index
+ "] = " + c;
1863
int start = this.
index
;
1864
while (this.
index
< this.pathLength && SpecialChars.IndexOf(this.pathValue[this.
index
]) < 0)
1867
string name = this.pathValue.Substring(start, this.
index
- start).Trim();
1877
int start = this.
index
;
1881
if (this.
index
>= this.pathLength)
1885
if (this.pathValue[this.
index
] == '[')
1887
else if (this.pathValue[this.
index
] == ']')
1891
string name = this.pathValue.Substring(start, this.
index
- start - 1).Trim();
1901
if (this.
index
>= this.pathLength)