Inheritance: IInstructionParser
コード例 #1
0
        private ICollection<Instruction> ExtractNodesFromPullParser(string xml)
        {
            var pullParser = new InstructionParser(TypeRuntimeTypeSource);

            using (var stream = new StringReader(xml))
            {
                var reader = new XmlCompatibilityReader(stream);
                return pullParser.Parse(new ProtoInstructionParser(TypeRuntimeTypeSource).Parse(reader)).ToList();
            }
        }
コード例 #2
0
 private IEnumerable<Instruction> ConvertToNodes(Stream stream)
 {
     var reader = new XmlCompatibilityReader(stream);
     var runtimeTypeSource = RuntimeTypeSource;
     var pullParser = new InstructionParser(runtimeTypeSource);
     var protoParser = new ProtoInstructionParser(runtimeTypeSource);
     return pullParser.Parse(protoParser.Parse(reader)).ToList();
 }