与Jil中的JObject等效(Json序列化器)

时间:2018-09-26 15:44:52

标签: c# asp.net-web-api2 jil

我最近在Web API项目中更改了默认的Json序列化器,并添加了Jil。 我遇到的问题是,在几种操作方法中,我有一个JObject参数作为参数。

JIl库中的哪个等效对象?

例如,对于这样的动作方法:

 public async Task<IHttpActionResult> ReversePayment([FromBody] JObject json)
    {
        if (json == null)
            return BadRequest("Invalid Json Format");

            var uniqueRef = json?["uniqueRef"].ToObject<string>();
            var systemType = json?["systemType"].ToObject<string>();


            await _payments.ReversePayment(uniqueRef, name, systemType);
            return Ok();

    }

Jil的变化应该是什么,因为我找不到真正的解决方案。

预先感谢

0 个答案:

没有答案