Exemplo n.º 1
0
        internal virtual PathExpression PathReplace(string iteratorName, Event e)
        {
            if (child != null)
            {
                this.child = child.PathReplace(iteratorName, e);
            }

            System.Diagnostics.Debug.WriteLine(this.ToSource());
            return(this);
        }
Exemplo n.º 2
0
 internal override void PathReplace(string iteratorName, Event e)
 {
     source = source.PathReplace(iteratorName, e);
     target.PathReplace(iteratorName, e);
 }