5 writes to index
System.Workflow.ComponentModel (5)
AuthoringOM\Bind.cs (5)
1794this.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)
1810char c = (this.index < this.pathLength) ? this.pathValue[this.index] : NullChar; 1823this.error = "path[" + this.index + "] = " + c; 1846this.error = "path[" + this.index + "] = " + c; 1863int start = this.index; 1864while (this.index < this.pathLength && SpecialChars.IndexOf(this.pathValue[this.index]) < 0) 1867string name = this.pathValue.Substring(start, this.index - start).Trim(); 1877int start = this.index; 1881if (this.index >= this.pathLength) 1885if (this.pathValue[this.index] == '[') 1887else if (this.pathValue[this.index] == ']') 1891string name = this.pathValue.Substring(start, this.index - start - 1).Trim(); 1901if (this.index >= this.pathLength)