我们可以将xml输出添加到输出流或缓冲区,而不是将其保存到特定目标

时间:2010-09-07 12:35:16

标签: c# asp.net

以下是将xml文件放置到特定目标的代码。

[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Xml)]
public XmlDataDocument GetList(string keyword1, string streetname, string lat, string lng, string radius)
{

  XmlDataDocument xmlDoc=  CreateXML( keyword1,streetname,lat,lng,radius);
  xmlDoc.Save(@"D:\blockseek7-9-2010\Block3.xml");
         return xmlDoc;
    // can i save it to outputstream or buffer 
}

1 个答案:

答案 0 :(得分:2)

xmlDoc.Save的第一个重载需要一个流