mvc5接收xml

前端之家收集整理的这篇文章主要介绍了mvc5接收xml前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
[HttpPost]
public ActionResult Foo()
{
    using (var reader = new StreamReader(Request.InputStream))
    {
        string xml = reader.ReadToEnd();
        // process the XML
        ...
    }
}

参考链接

原文链接:/xml/296736.html

猜你在找的XML相关文章