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