5 writes to current
System.Activities (5)
System\Activities\ActivityInstance.cs (5)
1714
this.
current
= root;
1720
this.
current
= this.current.GetChildren()[0];
1738
this.
current
= this.current.Parent;
1743
this.
current
= this.current.GetChildren()[0];
1753
this.
current
= null;
9 references to current
System.Activities (9)
System\Activities\ActivityInstance.cs (9)
1698
return this.
current
;
1718
while (this.
current
.HasChildren)
1720
this.current = this.
current
.GetChildren()[0];
1729
if (this.
current
== this.root)
1736
Fx.Assert(!this.
current
.Parent.GetChildren().Contains(this.
current
), "We should always have removed the current one from the parent's list by now.");
1738
this.current = this.
current
.Parent;
1741
while (this.
current
.HasChildren)
1743
this.current = this.
current
.GetChildren()[0];