예제 #1
0
파일: processor.cs 프로젝트: ydunk/masters
        internal void PushActionFrame(ActionFrame container, XPathNodeIterator nodeSet)
        {
            ActionFrame frame = PushNewFrame();

            frame.Init(container, nodeSet);
        }
예제 #2
0
파일: processor.cs 프로젝트: ydunk/masters
        internal void PushActionFrame(Action action, XPathNodeIterator nodeSet)
        {
            ActionFrame frame = PushNewFrame();

            frame.Init(action, nodeSet);
        }