您可以通过ASP网络接收XmlDocument吗?

时间:2020-03-03 18:59:33

标签: c# asp.net xmldocument

我正在编写一个Web服务,该服务接收xml字符串并将其解析为XmlDocument,然后对该字符串进行其他一些逻辑处理。该Web服务具有时间密集型约束,因此我想尽可能有效地执行此操作。有什么方法可以使用.NET Core 3.1在Asp .NET中接收XmlDocument?如果没有,是否有比加载以下内容更有效的方法?

[ 

 { "id": "0",
   "category": "Racing",
    "size": "16-32",
    "time": "30min" } ,


 { "id": "1",
   "category": "FPS",
    "size": "16-32",
    "time": "20min" } , 

{ "id": "2",
   "category": "RTS",
    "size": "10-12",
    "time": "40min" } , 

{ "id": "3",
   "category": "RTS",
    "size": "8-16",
    "time": "60min" } , 

{ "id": "4",
   "category": "RTS",
    "size": "2-4",
    "time": "10min" } , 

{ "id": "5",
   "category": "Racing",
    "size": "4-8",
    "time": "5min" } , 

{ "id": "6",
   "category": "Racing",
    "size": "4-8",
    "time": "15min" } , 

{ "id": "7",
   "category": "",
    "size": "2",
    "time": "20min" } , 

{ "id": "8",
   "category": "Third Person",
    "size": "2-4",
    "time": "70min" } ,

{ "id": "9",
   "category": "Racing",
    "size": "1",
    "time": "1min" } ,

]

0 个答案:

没有答案