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());
        }
Exemple #2
0
        private static IEnumerable <XamlInstruction> ReadNodes(Type underlyingType)
        {
            var resourceProvider = new InflatableTranslator();

            using (var stream = resourceProvider.GetInflationSourceStream(underlyingType))
            {
                var reader        = new XmlCompatibilityReader(stream);
                var wiringContext = (IWiringContext) new WpfWiringContext(new TypeFactory());
                var loader        = new XamlInstructionParser(wiringContext);
                var protoParser   = new XamlProtoInstructionParser(wiringContext);

                return(loader.Parse(protoParser.Parse(reader)));
            }
        }
Exemple #3
0
        private static IEnumerable<XamlInstruction> ReadNodes(Type underlyingType)
        {
            var resourceProvider = new InflatableTranslator();

            using (var stream = resourceProvider.GetInflationSourceStream(underlyingType))
            {
                var reader = new XmlCompatibilityReader(stream);
                var wiringContext = (IWiringContext) new WpfWiringContext(new TypeFactory());
                var loader = new XamlInstructionParser(wiringContext);
                var protoParser = new XamlProtoInstructionParser(wiringContext);

                return loader.Parse(protoParser.Parse(reader));
            }
        }