VisitTracePost() public abstract method

Last call made when visiting a trace.
public abstract VisitTracePost ( IXTrace trace, XLog log ) : void
trace IXTrace The trace to visit.
log XLog The log containing the trace.
return void
Esempio n. 1
0
        public void Accept(XVisitor visitor, XLog log)
        {
            visitor.VisitTracePre(this, log);

            foreach (XAttribute attribute in this.attributes.Values)
            {
                attribute.Accept(visitor, this);
            }

            foreach (IXEvent evt in this)
            {
                evt.Accept(visitor, this);
            }

            visitor.VisitTracePost(this, log);
        }