estaré pasando el archivo XML como esto:Cómo leer el archivo XML usando System.IO.Stream con LINQ
File1.PostedFile.InputStream
//reading xml file.....
public static void readXMLOutput(Stream stream)
{
System.Xml.Linq.XDocument xml = System.Xml.Linq.XDocument.Load(stream);
var query = from p in xml.Element("ste").Element("Application")
//where (int)p.Element("Id") == 1
select Page;
foreach (var record in query)
{
Response.Write("dfe") + record.Element("dfe").Value;
}
error:
Error 1 The best overloaded method match for 'System.Xml.Linq.XDocument.Load(string)' has some invalid arguments
cannot convert from 'System.IO.Stream' to 'string'
sí, estoy usando el framework 3.5. ¿Cuál debería ser la alternativa? –
¿Puedes mostrarme algunas líneas de muestra Transmitir usando xmlReader? –
@teki: Editado para dar un método que podrías usar. –