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 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))); } }
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)); } }