我从客户端应用程序获取 xml 流如何直接解析该流以及如何将其加载到数据集?
[WebInvoke(UriTemplate = "UpdateFile/{id}", Method = "POST")]
public bool UpdateTestXMLFile(string id, Stream createdText)
{
string filenamewithpath = System.Web.HttpContext.Current.Server.MapPath(@"~/files/" + id+".xml");
System.IO.File.WriteAllBytes(filenamewithpath, Util.ReadFully(createdText));
}
请告诉我 ..