Skip to content

Transformation paths

ahzf edited this page Feb 23, 2011 · 4 revisions

Pipes.NET supports the notion of transformation paths. That is, its possible to know how an object at the end a Pipe was transformed through all the stages of the Pipe.

var _Pipeline = new Pipeline<Object, Object>(...);
_Pipeline.SetSource(new SingleEnumerator<Object>(o));
while(_Pipeline.MoveNext())
{
    var _Object = _Pipeline.Current;
    List<Object> _Path = _Pipeline.Path;
}

And/Or Pipes home