private IEnumerable<XamlInstruction> ConvertToNodes(Stream stream)
 {
     var reader = new XmlCompatibilityReader(stream);
     var wiringContext = WiringContext;
     var pullParser = new XamlInstructionParser(wiringContext);
     var protoParser = new XamlProtoInstructionParser(wiringContext);
     return pullParser.Parse(protoParser.Parse(reader)).ToList();
 }
 private IEnumerable<XamlInstruction> ConvertToNodes(Stream xaml)
 {
     var wiringContext = WiringContext;
     var pullParser = new XamlInstructionParser(wiringContext);
     var protoParser = new XamlProtoInstructionParser(wiringContext);
     return pullParser.Parse(protoParser.Parse(xaml)).ToList();
 }
 private ICollection<XamlInstruction> ExtractNodesFromPullParser(string xml)
 {
     var pullParser = new XamlInstructionParser(WiringContext);
     return pullParser.Parse(new XamlProtoInstructionParser(WiringContext).Parse(xml)).ToList();
 }
        private ICollection<XamlInstruction> ExtractNodesFromPullParser(string xml)
        {
            var pullParser = new XamlInstructionParser(WiringContext);

            using (var stream = new StringReader(xml))
            {
                var reader = new XmlCompatibilityReader(stream);
                return pullParser.Parse(new XamlProtoInstructionParser(WiringContext).Parse(reader)).ToList();
            }
        }