1 write to pathValue
System.Workflow.ComponentModel (1)
AuthoringOM\Bind.cs (1)
1792this.pathValue = (path != null) ? path.Trim() : String.Empty;
8 references to pathValue
System.Workflow.ComponentModel (8)
AuthoringOM\Bind.cs (8)
1793this.pathLength = this.pathValue.Length; 1801if (this.pathLength > 0 && this.pathValue[0] == '.') 1810char c = (this.index < this.pathLength) ? this.pathValue[this.index] : NullChar; 1864while (this.index < this.pathLength && SpecialChars.IndexOf(this.pathValue[this.index]) < 0) 1867string name = this.pathValue.Substring(start, this.index - start).Trim(); 1885if (this.pathValue[this.index] == '[') 1887else if (this.pathValue[this.index] == ']') 1891string name = this.pathValue.Substring(start, this.index - start - 1).Trim();